0

我有一个包含 3 列的表,fname Lname并且description. 我想获取并附加它们的值FnameLname将此description数据移动到描述字段的末尾,而不覆盖该字段中的当前信息)。这完全可以用 MySQL 吗?

4

2 回答 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 回答