Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 449 Bytes

having.md

File metadata and controls

18 lines (10 loc) · 449 Bytes

HAVING方法属于链式调用方法之一,用于配合group方法完成从分组的结果中筛选(通常是聚合条件)数据。

案例

having方法只有一个参数,并且只能使用字符串,例如:

sql.table('node_table').group('user_id').where('id=1').having('count(number)>3').select()

最终得到

SELECT * FROM node_table WHERE id=1 GROUP BY user_id HAVING count(number)>3