我有一个这个数据的表
id,name,description 1,apple,'' 2,orange,''
我试图传递以下语句来更新行,因此描述列是“desc of apple”和“desc of orange”,但是它不起作用.
Update TestTable Set description = 'desc of ' + name
连接字符串的正确语法是什么?
sqlite的
string concatenation operator是“||”,而不是“”
原文链接:https://www.f2er.com/sqlite/197771.htmlUPDATE TestTable SET description = 'desc of ' || name;