我有一张包含这些数据的表格
id , name , description 1 , apple , '' 2 , orange , ''
我试图传递以下语句来更新行,所以描述列是'desc of apple'和'desc of orange'但它不起作用.
Update TestTable Set description = 'desc of ' + name
连接字符串的正确语法是什么?
SQLite的字符串连接运算符是" ||
",而不是" +
"
UPDATE TestTable SET description = 'desc of ' || name;