1. 程式人生 > 其它 >TP查詢欄位值為空,不為空

TP查詢欄位值為空,不為空

技術標籤:thinkphp

thinkphp查詢欄位值為空和不為空清空

$where['name'] = ['exp', 'is null'];  //為空的
$where['name'] = ['exp', 'is not null']; //不為空的