更改 SQLite3 中的值
我将首先展示代码:
create table products ('name' text primary key, 'price' INTEGER)
insert into table products ('name', 'price') values ('coke', 8)
insert into table products ('name', 'price') values ('sprite', 9)
将可乐行的价格列的值更改为 12 的 SQLite3 代码是什么。
所以我希望输出是可乐 12 雪碧 9。
非常感谢大家!
I'll start off by showing the code:
create table products ('name' text primary key, 'price' INTEGER)
insert into table products ('name', 'price') values ('coke', 8)
insert into table products ('name', 'price') values ('sprite', 9)
What would be the SQLite3 code to change the value of the price column for the coke row to 12.
So I want the output to be coke 12 sprite 9.
Thanks alot guys!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些可能只是转录错误或拼写错误,但您应该从
INSERT
语句中删除单词table
,并且您不需要在列名称周围使用单引号,因此声明应如下所示:These might just be transcription errors or typos, but you should remove the word
table
from yourINSERT
statements, and you don't need single-quotes around column names, so the statement should look like: