2012年6月21日 星期四

MySQL 的 select into 語法

create table test.test_bk select * from `db1`.` test `;

MySQL 字串連接


CONCAT(string1, string2, string3, …)


EX:字串和字串連接
CONCAT('test','abc')
=> testabc


EX:數字和字串連接 
CONCAT('test',CAST(2222 AS CHAR)) 
=>test2222
(cast:資料類型的型態轉換。)