查询语句语法:
select * 列1,列2… from 表
首先建立一个名为“person”的表格:
然后双击“person”表格,在这个表格里输入数据:
再点击“新建查询”,
1.如果想查询所有数据,输入代码:
select * from person
选中并运行
2.如果想查询名字和电话号,输入代码:
select name,phone from person
选中并运行
3.如果想修改表格中的列的名字,
输入代码:
select name as '名字',phone as '电话' from person
选中并运行
4.如果想根据电话号查询个人信息
输入代码:
select * from person where phone ='13333333333'
选中并运行
5.如果想查询年龄大于20岁的人
输入代码:
select * from person where age > 20
选中并运行
6.如果想查询大于18且小于20岁的人
输入代码:
select * from person where age between 18 and 20
选中并运行
如果此时把朱瞻基的"age"改成"20"
再次运行该代码:
由此可以看出"where age between 18 and 20"的意思是“闭区间18到20”
7.如果想查询查询所有姓朱的人
输入代码:
select * from person where name like '朱%'
其中"%"代表任意字符,“_”代表单一字符
选中并运行
8.查询名字中带有詹字的人的信息
现在加一条数据
输入代码:
select * from person where name like '%瞻%'
选中并运行
9.查询电话号可能是(13333333333,18614098765)
select * from person where phone in ('13333333333','18614098765')
选中并运行
10.判空操作
代码:
select * from person where name is not null
选中并运行
总结: