3中select mysql
簡單查詢simple:不涉及鏈接 sql
select、from、where、group by、having、order by oracle
複雜查詢complex:多遍鏈接 函數
複合查詢compound:union\union all相交、相減、相加 ci
聚合函數中null不參與聚合統計. it
select * from city limit 10,3;表示查詢十一、十二、13這3條數據. io
group_concat()用‘,’鏈接一個字段。通常用在分組,也能夠沒有group by 那就是一個分組了. select
with rollup:爲分組彙總。 rollup
cube:(oracle有,mysql沒有) nio
union (去重) union all沒有
union/union all後的order by 和limit是對union後的結果進行的order by 和 limit。