【MySQL】关于replace函数和Mid函数

题目:
"Monaco-Ville"是合併國家名字 "Monaco" 和延伸詞"-Ville".
顯示國家名字,及其延伸詞,如首都是國家名字的延伸。
你可以使用SQL函數 REPLACE或 MID.

select name,replace(capital,name,'')  from world where capital like concat(name,'_%')

select name,mid(capital,length(name)+1)  from world where capital like concat(name,'_%')
84A0729A-0452-4191-A1DD-E4839B4570DE.png

你可能感兴趣的:(【MySQL】关于replace函数和Mid函数)