gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 06:17:56 25 4
gpt4 key购买 nike

我有一个包含这些数据的表格

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

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

 Update TestTable Set description = 'desc of ' + name 

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

最佳答案

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

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

关于用于字符串连接的 SQLite 更新语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1446125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com