幻想编程

从头到脚学Sql语言(4)

时间:14-03-09 20:32:29点击:380

现在继续sql脚本语言


假设查询年龄

select age from Student

会得到结果如下


如果不想查询到有重复的年龄可以用distinct关键字

select distinct age from Student

结果如下


而且还是按升序查询的

继续这个

如何按升序查询分数

用order by

select * from Student order by score


降序则是在后面加desc

select * from Student order by score desc


简要说说and和or运算符

查询名字为小明 并且是男生的学生 用and

select * from Student where name='小明' and sex='男'

查询名字为小红或者年龄为11岁的学生 两者条件只要一个符合就能查询

select * from Student where name='小红' and age=11

and和or也可以结合使用的