sql語句基本操作

2021-05-06 15:57:20 字數 1503 閱讀 3218

1.建表語句:create table

用法: create table 表的名字 (欄位1, 欄位2,。。。。)

舉例:例如建立乙個學生成績表,包含的字段有,學生id,姓名,性別,班級,成績create table score(

create table score(

sid nvarchar(10) primary key,

sname nvarchar(10) not null,

*** nvarchar(2),

sclass nvarchar(5),

score int,

check(*** in('男','女'))

);2.插入語句:insert into

用法:insert into 表的名字 (欄位1, 欄位2,。。。。) values (值1,值2,。。。。)

如果欄位是表中所有欄位字段列表可省去,直接寫表名就行了

舉例:往表score中插入7條資料

insert into score values('95002','小李','男','01',82)

insert into score values('95003','小麗','女','01',83)

insert into score values('95004','小趙','男','01',67)

insert into score values('95005','小美','女','01',78)

insert into score values('95006','小田','男','01',88)

insert into score values('95007','小徐','女','01',85)

insert into score values('95008','小王','男','01',86)

3.查詢語句:select

用法:select 字段 from 表名 where 條件

欄位間用','分開,同樣如果選擇表的所有字段,可用萬用字元*

舉例:輸出score表中成績在60到80的同學的所有資訊

select * from score where score>=60 and score<=80

輸出score 表中成績為85或86或87的學生資訊

select * from score where score=85 or score=86 or score=87

輸出score 表中班級為95001或者性別為女性的學生的名字

select sname from score where sclass='95001' or sec='女'

4.刪除語句:delete

用法:delete from 表的名字 where 條件

舉例:刪除score表中分數低於70分的記錄

delete from score where score<70

SQL 基本語句

在查詢分析器中執行如下語句 sp password null,teracypwd sa 把sa的密碼設為 teracypwd 執行成功後有 command s completed successfully.ok insert into 表名稱 values 值1,值2,insert into per...

sql基本語句

sql常用命令 資料的增刪改查 增加資料 插入資料 insert into 表名 字段 字段 values 值,值,值.按需要字段填寫 insert into 表名 values 值,值,值.插入全部字段,自動增長列不寫 刪除資料 記得有外來鍵先刪除主鍵表裡的相應內容 刪除表裡的內容 delete ...

SQL 基本語句

1 建表,主鍵約束,外來鍵約束。create table course cno int 11 not null auto increment,cname char 20 default null,cteachername char 20 default null,primary key cno cr...