mysql 查詢欄位為null或者非null

fabbymee發表於2015-09-09
說明:
1、查詢欄位值為空的語法:where <欄位名> is null

2、查詢欄位值不為空的語法:where <欄位名> is not null

select company_id,company_name from adr_company
where company_name is not null


相關文章