0

我想做这样的事情,但总是出错,所以代码不正确。我想用空格更新同一列。

update table 
set (select line as line1 from  table where id='100')=line1+' ' 
where id='100'

谢谢

4

2 回答 2

4

DB2(根据您之前的问题假设,MySQL也适用):

UPDATE  table
SET     line = CONCAT(line, ' ')
WHERE   id = '100'
于 2012-05-30T09:49:41.977 回答
2
update table 
set line=line+' ' 
where id=100

像这样的东西?

于 2012-05-30T09:49:00.920 回答