//sql写法 sql="select * from 数据表 where 字段名=字段值 order by 字段名 [desc]" sql="select * from 数据表 where 字段名 like '%字段值%' order by 字段名 [desc]" sql="select top 10 * from 数据表 where 字段名 order by 字段名 [desc]" sql="select * from 数据表 where 字段名 in ('值1','值2','值3')" sql="select * from 数据表 where 字段名 between 值1 and 值2" //数据记录统计函数: AVG(字段名) 得出一个表格栏平均值 COUNT(*¦字段名) 对数据行数的统计或对某一栏有值的数据行数统计 MAX(字段名) 取得一个表格栏最大的值 MIN(字段名) 取得一个表格栏最小的值 SUM(字段名) 把数据栏的值相加 引用以上函数的方法: sql="select sum(字段名) as 别名 from 数据表 where 条件表达式" set rs=conn.excute(sql) 用 rs("别名") 获取统的计值,其它函数运用同上。
//sql写法 select DATE_FORMAT(payTime,'%Y-%m') as month,sum(payMoney) as payMoney from datatable where DATE_FORMAT(payTime,'%Y')=2017 group by month order by month //CI写法 $this->mbop->from('datatable'); $this->mbop->select('DATE_FORMAT(payTime,\'%Y-%m\') as month,sum(payMoney) as payMoney'); $this->mbop->where('DATE_FORMAT(payTime,\'%Y\')',$year); $this->mbop->order_by('month'); //也可以order_by('month','ASC'); $this->mbop->group_by('month'); $query = $this->mbop->get(); $result= $query->result_array();