标签: sqlite
我必须更新SQLite中一行的所有列,我知道我可以这样做:
UPDATE table_name SET column1=value1,column2=value2,...
但这样做很痛苦,我可以这样做吗:
Update tablename then (all the columns name) and then (All the values in order)
答案 0 :(得分:1)
我认为您无法以您想要的方式更新表格:
以下是在SQL中进行更新查询的一些不同方法:
http://www.techonthenet.com/sql/update.php
答案 1 :(得分:1)
没有; documentation表示仅支持标准语法: