Add an AND HAVING expression ``` use sea_orm::{sea_query::{Alias, Expr}, entity::*, query::*, tests_cfg::cake, DbBackend}; assert_eq!( cake::Entity::find() .having(cake::Column::Id.eq(4)) .having(cake::Column::Id.eq(5)) .build(DbBackend::MySql) .to_string(), "SELECT `cake`.`id`, `cake`.`name` FROM `cake` HAVING `cake`.`id` = 4 AND `cake`.`id` = 5" ); assert_eq!( cake::Entity::find() .select_only
(mut self, filter: F)
| 308 | /// ); |
| 309 | /// ``` |
| 310 | fn having<F>(mut self, filter: F) -> Self |
| 311 | where |
| 312 | F: IntoCondition, |
| 313 | { |
| 314 | self.query().cond_having(filter.into_condition()); |
| 315 | self |
| 316 | } |
| 317 | |
| 318 | /// Add a DISTINCT expression |
| 319 | /// ``` |