Как выбрать нулевые значения таблицы SQL с phpMyDataGrid

я использовал phpMyDataGrid инструмент для генерации отчетов в мой последний год php проект. как выбрать пустой столбец с phpMyDataGrid? моя таблица и код следующим образом.

vehicle_license
6606621252
5965565553
NULL
6656771252
NULL
5345565553
NULL
6609877252
2345565553
4566521252
5964564563

/* Define fields to show */
$objGrid -> FormatColumn("regno", "Registration No", 5, 2, 0, "130", "left");
$objGrid -> FormatColumn("availability", "Registration status", 2, 2, 0,"50", "left", "check:Unavailable:Registered");
$objGrid -> FormatColumn("officerid", "Officer", 5, 2, 0, "130", "left");
$objGrid -> FormatColumn("datetime", "Data & Time", 5, 2, 0, "180", "left", "time:dmy:/");
$objGrid -> orderby("datetime", "DESC");

/* Records can be filtered to comply with a pre-defined condition */
$objGrid -> where ("driving_license = NULL");  //not working
$objGrid -> where ("driving_license = 'NULL'");  //not working
$objGrid -> where ("driving_license = 'IS NULL'");  //not working
//<> operator for 'not equal' is working

-1

Решение

where ("driving_license IS NULL");

или же

where ("driving_license = '' ");
1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]