SQLServer修改表資料
阿新 • • 發佈:2019-01-27
使用SSMS資料庫管理工具修改資料
修改任意一條或者多條都可以
1:開啟資料庫,選擇資料表,右鍵點選-》編輯所有行(如未配置,點選編輯前200行)。
2、編輯需要修改的資料-》編輯完成後,右鍵點選空白處-》選擇執行SQL即可編輯成功。
使用T-SQL指令碼修改資料
修改單表中一行單列或者多列資料
語法:update 表名 set 列名1=值,列名2=值 where 條件;
示例一:update test1 set age='21' where id='1';
示例結果:
修改單表中多行一列或多列資料
語法:update top(數量) 表名 set 列名1=值1,列名2=值2 where 條件;
示例:
update test1 set age='23' where id in ('1','2');
update test1 set age='22' where id between '3' and '4';
update test1 set age='23' where id>='5' and id <='6';
update top(2) test1 set age='23' where id>='5';
update test1 set age='23' where test1.id in (select top(2) id from test1 order by id desc);
示例結果:
多表關聯修改表中資料
語法:update 表1 set 表1.列1=值,表1.列2=值 from 表1 as a,表2 as b where a.列名=b.列名;
示例:update test1 set test1.name='李華',test1.sex='女' from test1 as a,test2 as b where a.classid=b.id;
示例結果: