加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

聚合函数+模糊查询

发布时间:2020-12-13 20:02:36 所属栏目:百科 来源:网络整理
导读:--聚合函数 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
--聚合函数
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')

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读