精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

MySQL UPDATE 語句:更新數(shù)據(jù)

mysql update 語句:更新數(shù)據(jù)

mysql 數(shù)據(jù)庫使用 update 語句來修改或者更新已經(jīng)存在的數(shù)據(jù)。

我們可以通過 mysql> 命令窗口向表中插入數(shù)據(jù),或者通過php腳本來插入數(shù)據(jù)。

 

1. mysql update 語句的語法

update table_name set field1=new-value1, field2=new-value2
[where clause]
  • update 語句能夠同時(shí)更新多個(gè)字段。
  • update 語句能夠在 where 子句中指定更新條件。

當(dāng)你需要更新數(shù)據(jù)表中指定行的數(shù)據(jù)時(shí) where 子句是非常有用的。

 

2. 通過命令窗口更新數(shù)據(jù)

在以下范例中,我們更新數(shù)據(jù)表中 id 為 3 的 title 字段值:

mysql 范例

mysql> update article set title='學(xué)習(xí) c++' where id=3; query ok, 1 rows affected (0.01 sec) mysql> select * from article where id=3; +-----------+--------------+---------------+-----------------+ | id | title | author | submission_date | +-----------+--------------+---------------+-----------------+ | 3 | 學(xué)習(xí) c++ | yapf.com | 2016-05-06 | +-----------+--------------+---------------+-----------------+ 1 rows in set (0.01 sec)
相關(guān)文章