SQLite Update 語句
sqlite 的 update 查詢用于修改表中已有的記錄。可以使用帶有 where 子句的 update 查詢來更新選定行,否則所有的行都會被更新。
1. 語法
帶有 where 子句的 update 查詢的基本語法如下:
update table_name set column1 = value1, column2 = value2...., columnn = valuen where [condition];
您可以使用 and 或 or 運算符來結(jié)合 n 個數(shù)量的條件。
2. 范例
假設(shè) company 表有以下記錄:
id name age address salary ---------- ---------- ---------- ---------- ---------- 1 paul 32 california 20000.0 2 allen 25 texas 15000.0 3 teddy 23 norway 20000.0 4 mark 25 rich-mond 65000.0 5 david 27 texas 85000.0 6 kim 22 south-hall 45000.0 7 james 24 houston 10000.0
下面是一個范例,它會更新 id 為 6 的客戶地址:
sqlite> update company set address = 'texas' where id = 6;
現(xiàn)在,company 表有以下記錄:
id name age address salary ---------- ---------- ---------- ---------- ---------- 1 paul 32 california 20000.0 2 allen 25 texas 15000.0 3 teddy 23 norway 20000.0 4 mark 25 rich-mond 65000.0 5 david 27 texas 85000.0 6 kim 22 texas 45000.0 7 james 24 houston 10000.0
如果您想修改 company 表中 address 和 salary 列的所有值,則不需要使用 where 子句,update 查詢?nèi)缦拢?/p>
sqlite> update company set address = 'texas', salary = 20000.00;
現(xiàn)在,company 表有以下記錄:
id name age address salary ---------- ---------- ---------- ---------- ---------- 1 paul 32 texas 20000.0 2 allen 25 texas 20000.0 3 teddy 23 texas 20000.0 4 mark 25 texas 20000.0 5 david 27 texas 20000.0 6 kim 22 texas 20000.0 7 james 24 texas 20000.0