聚合函数+模糊查询

--聚合函数
select SUM(age)as 总和 from dbo.student
select AVG(age) 平均 from dbo.student
select max(age) 最大 from dbo.student
select min(age) 最小 from dbo.student
select count(*) 数量 from dbo.student
--模糊查询
select * from dbo.student where age IS null--查unll
select * from dbo.student where age IS not null --查非空
select * from dbo.student where address like '你%'--模糊查询
select * from dbo.student where stuID between 2 and 4
select * from dbo.student where address in ('你妹','11')

相关文章

迭代器模式(Iterator)迭代器模式(Iterator)[Cursor]意图...
高性能IO模型浅析服务器端编程经常需要构造高性能的IO模型,...
策略模式(Strategy)策略模式(Strategy)[Policy]意图:定...
访问者模式(Visitor)访问者模式(Visitor)意图:表示一个...
命令模式(Command)命令模式(Command)[Action/Transactio...
生成器模式(Builder)生成器模式(Builder)意图:将一个对...