SQL server 表中資料的新增 修改 刪除

2021-10-11 18:43:07 字數 1358 閱讀 1985

1. 向表中**新增**資料

// 給表中新增資料

(1)插入一行資料: insert into 表名 values(值1,值2,值3...)

(2)插入部分資料: insert into 表名(列名1,列名2,列名3) values(值1,值2,值 3)

(3)通過select插入一行資料: insert into 表名 select 語句

(4)通過select插入部分資料: insert into 表名(列名1,列名2,列名3) select 語句

例子:

// 給表中新增資料

insert into 系部表 values

('x11'

,'土木系'

,'王老漢'

,'020-199911073'

,'12-306'

)insert into 系部表

(系號,系名稱,系主任)

values

('x12'

,'軸承系'

,'張琳'

)insert into 系部表 select *

from 系別表

insert into 系部表

(系號,系名稱) select 系號,系名稱 from 系別表

2. 向表中**修改**資料

// 修改表中的資料

(1)update 表名 set 列名1=值1,列名2=值2,列名3=值3…..

(2)update 表名 set 列名1=值1,列名2=值2,列名3=值3….. where 子句

例子:

// 給表中新增資料

update 學生表 set 身高=

168,性別=

'女' where 籍貫=

'廣東省陽江市'

update 學生表 set 身高=

168,性別=

'女'

update 成績表 set 成績=

60 where 成績<

60

3. 向表中**刪除**資料

// 修改表中的資料

delete from 表名

delete from 表名 where 子句

例子:

// 刪除表中的資料

delete

from 成績表 where 成績<

60delete

from 成績表

SQL Server刪除表及刪除表中資料的方法

sql server中如何刪除表,如何刪除表中的資料。刪除表的t sql語句為 drop table 表名 drop是丟棄的意思,drop table表示將乙個表徹底刪除掉。刪除表資料有兩種方法 delete和truncate。delete的用法如下 delete from 表名 where條件 t...

SQL Server刪除表及刪除表中資料的方法

刪除表的t sql語句為 drop table 表名 drop是丟棄的意思,drop table表示將乙個表徹底刪除掉。刪除表資料有兩種方法 delete和truncate。delete的用法如下 delete from 表名 where條件 truncate的用法如下 truncate table...

資料庫修改表中的資料(SqlServer)

dml update 語法 update 表名 set 欄位1 新的值,欄位2 新的值,where 記錄的匹配條件 說明 如果不寫where子句,預設是修改所有的行 準備資料 use worker go create table worker id int notnull primary key,n...