从头到脚学Sql语言(3)

时间:2014-03-09 20:31    点击:

select name from Student 表示查询全部名字
select age from Student 表示查询全部年龄
select * from Student where name='小明' 查询名字叫小明的所有字段
select * from Student where age>=11 查询年龄大于等于11的数据
select * from Student where age<>11 查询年龄不等于11的数据


用as可以给表的字段取别名,例如
select name as '姓名',age as '年龄',sex as '性别',score as '分数' from Student


接下来是删除,删除其实很简单

delete from Student where id=4

把id为4的字段删除

如果没有where id=4,将会把表的所有内容都清空

其实增,改,删都挺简单,重点是查
查询可以说是sql的重中之重,各种各样的查询,各种复杂的查询
要全部理解需要点时间
今天先到这,下次继续!

来源:幻想编程//所属分类:站长原创/更新时间:2014-03-09 20:31
顶一下
(0)
0%
踩一下
(0)
0%
上一篇:没有了
下一篇:从头到脚学Sql语言(4)
相关内容