数据查询基础
一、查询基础
1.数据库存储数据的目的就是为了查询
2.查询是最能体现数据库魅力的一个方面
3.查询的本质就是数据的筛选
4.select:选择,查找
5.select语句用于查询,语法如下
select 列名 from 表名 [where 条件] [order by 排序列 [asc / desc] ]
6.查询所有行和所有列
select * from Student
7.查询部分列
select stuName,stuAge from Student
8.给列起别名
select stuName as 姓名 stuAge as 年龄 from Student
select stuName name ,stuAge age from Student --as 可以省略
select stuName 'name' from Student --可以带单引号,防止特殊符号或空格
9.通过where条件查询部分行
select * from student where stuSex='男'
10.多条件查询
select * from student where stuSex='男' and stuAge > 22