12345678910111213141516171819 |
- <?php
- namespace app\api\controller;
- use app\api\controller\WeChart;
- use think\Db;
- class Qc{
- function index()
- {
- $sql = "SELECT uid , count(id) as num FROM `user_sign` where `month` = 11 GROUP BY uid HAVING num > 6 ORDER BY num desc";
- $list = Db::query($sql);
- var_dump($list);
- }
- }
|