SQL server中的增刪改查

2021-10-01 12:57:55 字數 1256 閱讀 4904

簡單聊聊sql server中的【增刪該查】

其實從一般角度來說:sql的增刪改查和oracel的增刪改查是通用的,下面呢?我們就簡單來介紹一下具體的用法。

1.1 插入某行資料

insert [into] 《表名》 (列名) values (列值);

例如: insert

into staff values

(name,age,***)

;

2.1【刪除某行資料】

delete from 《表名》 where 《刪除條件》;

例如: delete

from staff where name =

'張三'

;

2.2【刪除整個表】

truncate table 《表名》

例如:truncate

table staff;

注意:刪除表的所有行(指物理資料),但表的結構、列、約束、索引等不會被刪除;不能用於有外建約束引用的表

3.1 【修改某行資料】

update 《表名》 set 《列名=更新值》 [where 《條件》];

例如:update staff set name=

'李四'

where name=

'張三'

;

4.1 【查詢資料】

select * from 《表名》 [where 《條件》] ;

例如:select

*from staff where name=

'name'

;

另外,簡單介紹一下其他的函式,各位看官請接著往下看;

5.1【使用like進行模糊查詢】

注意:like運算副只用於字串,所以僅與char和varchar資料型別聯合使用

例如:select

*from a where name like

'趙%'

說明:查詢顯示表a中,name欄位第乙個字為趙的記錄。

6.2【使用between在某個範圍內進行查詢】

例如:select

*from staff where age between

18and

20

說明:查詢顯示表staff中age在18到20之間的記錄

SQL Server 增刪改查基礎

主鍵為自增時可不填寫 插入單條資料 insert into product values 008 原子筆 辦公用品 100,null,2019 11 11 insert into product select 008 原子筆 辦公用品 100,null,2019 11 11 插入多條資料 inser...

Sql server 實現增刪改查

vs2008 c sql server csharp view plain copy using system.data.sqlclient csharp view plain copy sqlconnection conn csharp view plain copy 連線資料庫 private ...

Sqlserver 增刪改查 改

我們就以院系,班級,學生來舉例。create table dbo yuanxi id int identity 1,1 not null,學校id 自增量 yuanxiname varchar 50 null,院系名字 create table dbo class id int identity 1...