摘要:
用户表:user 部门表:department 需求: 通过user表的部门ID,获得真正的部门名称且在一个列中显示,多个部门之间用,隔开 1、将行转列 SELECT b.dep_id FROM ( SELECT dep_id=CAST('<v>'+REPLACE(dep_id,',','</v>< 阅读全文
摘要:
基本常用查询 -- all 查询所有,几乎从来不用 all 关键字,因为是默认关键字 select all sex from student; -- distinct 过滤重复 (常用语检查一列数据是否有异常值) select distinct sex from student; -- count 阅读全文