我有一个包含 3 列的表,fname
Lname
并且description
. 我想获取并附加它们的值Fname
(Lname
将此description
数据移动到描述字段的末尾,而不覆盖该字段中的当前信息)。这完全可以用 MySQL 吗?
问问题
398 次
2 回答
2
Please update function as per req...and concatination of string :
Here Concat function is used for concat string..:
update table_name set description = CONCAT(description,' ',fname,' ',Lname);
于 2012-10-15T11:43:54.690 回答
0
update your_table_name set description = CONCAT(description,' ', fname,' ',Lname);
于 2012-10-15T11:42:48.060 回答