SQLite更新字符串连接的语法?

时间:2009-09-18 18:18:04

标签: sql sqlite syntax string-concatenation

我有一张包含此数据的表格

id , name    , description
1  , apple   , ''
2  , orange  , ''

我正在尝试传递以下语句来更新行,因此描述列是'desc of apple'和'desc of orange'但是它不起作用。

 Update TestTable Set description = 'desc of ' + name 

连接字符串的正确语法是什么?

1 个答案:

答案 0 :(得分:51)

SQLite的string concatenation operator是“||”,而不是“+

UPDATE TestTable SET description = 'desc of ' || name;