Yoast\WP\Lib
ORM::having_not_null()
Adds a HAVING column IS NOT NULL clause to your query.
Метод класса: ORM{}
Хуков нет.
Возвращает
ORM
.
Использование
$ORM = new ORM(); $ORM->having_not_null( $column_name );
- $column_name(строка|массив) (обязательный)
- The table column.
Код ORM::having_not_null() ORM::having not null Yoast 24.1
public function having_not_null( $column_name ) { return $this->add_having_no_value( $column_name, 'IS NOT NULL' ); }