public function Condition::isNotNull in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::isNotNull()
- 9 core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::isNotNull()
Sets a condition that the specified field be NOT NULL.
Parameters
string|\Drupal\Core\Database\Query\SelectInterface $field: The name of the field or a subquery to check.
Return value
$this The called object.
Overrides ConditionInterface::isNotNull
File
- core/
lib/ Drupal/ Core/ Database/ Query/ Condition.php, line 144
Class
- Condition
- Generic class for a series of conditions in a query.
Namespace
Drupal\Core\Database\QueryCode
public function isNotNull($field) {
return $this
->condition($field, NULL, 'IS NOT NULL');
}