比如 我想 更新 字段 内容 让 ziduan = ziduan & “新内容”
就是说 把 新的内容 追加到字段原有内容之后。。
update film set ziduan =ziduan & '新内容' where id=1 <--- 这样写 是错误的。。。
请问 该如何写
------最佳解决方案--------------------------------------------------------
update film set ziduan =ziduan || '新内容' where id=1
create table film(ziduan varchar(64));
sqlite> insert into film values('abc');
sqlite> update film set ziduan=ziduan
------其他解决方案--------------------------------------------------------
' new content';
sqlite> select * from film;
abc new content