欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

必须会的SQL语句(六) 数据查询

程序员文章站 2024-01-27 11:12:22
1.基础的查询     1)重命名列     select name as '姓名' from 表名 &n...

1.基础的查询
    1)重命名列
    select name as '姓名' from 表名
 
    2)定义常量列
    select 是否 ='是' from 表名
 
    3)top用法 percent
     --这种写法可以获取前20%条字段。
      select top 20 percent * from 表名
 
    4)去除重复列
     select distinct 列名 from 表名
   
    5)聚合函数
     max    avg    count    min    sum
     --多个聚合结果 在一个结果集中
     select
        最大年龄 = (select max(age) from 表名),
        最小年龄 = (select min(age) from 表名)
 
    6)between and
        select * from 表 where xx  between 5 and 6
    
2.union 使用union将两个结果集汇聚在一起。
 --     年龄      工资
-- ————————
--      19       $20000
--      50       $20005
--      30       $23000
--     汇总     $63005

--   查询各年龄段工资,同时显示所有工资汇总。(像上边的表)
select
--把年龄转换成varchar类型
convert(varchar(10),[age]) as 年龄
sum([salary]) as 工资
from  员工表
group by age
--将两个结果集,合并成一个结果集
union
select
--汇总是一个常量列
'汇总' , sum(salary)
from 员工表
     使用union合并两个结果集时,
     两个结果集列数必须一致,并且数据类型对应。
     这就是代码中,把年龄转换成varchar的原因。
 
3.order by
  -- order by 用于结果集排序,
  -- 其order他后边不只可以接一个字段,
  -- 也能接一个 表达式。
select *
    from 表
    order by (age+salary)/2.0 desc