Amazon Ads

2013年3月26日 星期二

【筆記】在MySQL中做字串連接

MySQL(5.5.22)中,做字串連接,是不可以用「+」,如:
select `name` + ' is here' from user
結果會是:0

要做字串連接,要用Concat這個function,如:
select CONCAT(`name`,' is here') from user

結果就會是:bigbear is here

參考文件

沒有留言: