常用sql操作
统计查询结果的数量
1select count(*) from table查询时间时加8小时
1select * from table where date_add(time,interval 8 hour)> '2016-10-01 10:00:00'修改字段属性
12alter table `{$installer->getTable('memebox_auth/device')}`modify `device_id` varchar(256);联合查询join
1select * from A left join B on A.id=B.id where A.ctime>'2016-01-01' and B.status=0分组group by
1select status,count(*) from order group by status
本文作者 : 小凡
原文链接 : https://16bh.github.io/2016/10/28/some-sql/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!