sql语句基本操作

1.建表语句:create table

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

举例:例如创建一个学生成绩表,包含的字段有,学生id,姓名,性别,班级,成绩create table score(
create table score(
 sid nvarchar(10) primary key,
 sname nvarchar(10) not null,
 sex nvarchar(2),
 sclass nvarchar(5),
 score int,
 check(sex 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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值