mysq对数据的l查询,增加,修改和删除sql语句

sql查询语句:

select * from student where sname like '%李%' and sgroup>55 and sgroup<80


sql插入语句:

insert into student(sname,sage,sgroup,sex,class,number,location) 
values('李玉',20,88,'女','信管一班','湖南常德','13534542656')


sql修改数据语句


update student set number='13534546543',location='湖南省常德市' where sname='李玉'

sql删除语句

delete from student where sname='贾星'


sql语句中like的一些作用:

1.姓名以某个字符开头:
where  姓名 like '张%'

2.姓名以某个字符结尾:
where 姓名 like '%张'

3.姓名中的第二个字符有某个字符:
where 姓名 like '_张%'

4.姓名中有某个字符存在:
where 姓名 like '%张%'

你可能感兴趣的:(数据库语句,sql)