You appear to be a bot. Output may be restricted
Description
Adds a HAVING column IS NOT NULL clause to your query.
Usage
$ORM = ORM::having_not_null( $column_name );
Parameters
- $column_name
- ( string|array ) required – The table column.
Returns
ORM
Source
File name: wordpress-seo/lib/orm.php
Lines:
1 to 3 of 3
public function having_not_null( $column_name ) { return $this->add_having_no_value( $column_name, 'IS NOT NULL' ); }