常用sql操作

发布 : 2016-10-28 分类 : IT 浏览 :
  1. 统计查询结果的数量

    1
    select count(*) from table
  2. 查询时间时加8小时

    1
    select * from table where date_add(time,interval 8 hour)> '2016-10-01 10:00:00'
  3. 修改字段属性

    1
    2
    alter table `{$installer->getTable('memebox_auth/device')}`
    modify `device_id` varchar(256);
  4. 联合查询join

    1
    select * from A left join B on A.id=B.id where A.ctime>'2016-01-01' and B.status=0
  5. 分组group by

    1
    select status,count(*) from order group by status
本文作者 : 小凡
原文链接 : https://16bh.github.io/2016/10/28/some-sql/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!
留下足迹