php 中 mysql 操作 语句 总结

$goods = D('Goods');

// 获得总条数价格大于1000的商品

$cnt = $goods -> where ('price > 1000') -> count();   sum() 总数   max()   avg() 平均数  min()

// 转为sql语句就是 SELECT COUNT(*) AS tp_count FROM 'sw_goods' LIMIT 1

 

posted on 2016-05-25 19:00  杜宝~  阅读(137)  评论(0编辑  收藏  举报

导航