摘要: union 多个结果集行的联合,所以要求多个结果集列数相同,列类型相同 join 是列的联合 union all和 union的区别在于,union all不去除重复数据,不重新排列数据 union all/union 可用于一个结果集及汇总的联合 select 商品名称, 销售总价=sum(销售价 阅读全文
posted @ 2020-05-31 21:20 boenotuch 阅读(362) 评论(0) 推荐(0)
摘要: select sum(tsage), 性别=tsgender, 人数=count(*) from tbstudent group by tsgender --当使用了分组语句 group by 或者是聚合函数的时候,在select查询列表中不能再包含其它的列名(group by 分组后的数据只有一列 阅读全文
posted @ 2020-05-31 18:28 boenotuch 阅读(310) 评论(0) 推荐(0)
摘要: select * 4 from mytable 1 where ..... 2 group by .... 3 order by .... 5 阅读全文
posted @ 2020-05-31 17:54 boenotuch 阅读(133) 评论(0) 推荐(0)
摘要: 通配符主要用于字符串的查询和匹配 _ :匹配一个字符 select * from mytable where name like '张_' 查询条件张姓,姓名2个字 % :匹配多个字符 select * from mytable where name like '张%' 查询条件 张姓 [] :范围 阅读全文
posted @ 2020-05-31 17:36 boenotuch 阅读(455) 评论(0) 推荐(0)