HAVING方法也是連貫操作之一,用于配合group方法完成從分組的結(jié)果中篩選(通常是聚合條件)數(shù)據(jù)。
having方法只有一個參數(shù),并且只能使用字符串,例如:
Db::table('think_user')
->field('username,max(score)')
->group('user_id')
->having('count(test_time)>3')
->select();
生成的SQL語句是:
SELECT username,max(score) FROM think_score GROUP BY user_id HAVING count(test_time)>3