select表(mysql学习四)

3中select

简单查询simple:不涉及连接

select、from、where、group by、having、order by

复杂查询complex:多遍连接

复合查询compound:union\union all相交、相减、相加

聚合函数中null不参与聚合统计.

select * from city limit 10,3;表示查询11、12、13这3条数据.

group_concat()用‘,’连接一个字段。一般用在分组,也可以没有group by 那就是一个分组了.

with rollup:为分组汇总。

cube:(oracle有,mysql没有)

union (去重) union all没有

union/union all后的order by 和limit是对union后的结果进行的order by 和 limit。

 

你可能感兴趣的:(select表(mysql学习四))