1. update用法示例

原表:

SQL update用法_SQL update

 

 2. SQL语句:

UPDATE test_table 
SET name='BBBB'WHERE id=4;

3. 结果:

SQL update用法_SQL update_02