1"方法二、select*fromNewswhereNewstype="指定值"a">

免费中国av,天堂一区av,国产55页,av成人亚洲,日日干美女,日韩av片在线播放,久久久久影视

行業(yè)動(dòng)態(tài)
SQL查詢(xún)非空記錄、SQL查詢(xún)值為空的記錄
發(fā)布日期:2009-09-18 閱讀次數(shù):6746 字體大?。?a href="javascript:;" onclick="ChangeFontSize('content',16)">大

查詢(xún)非空記錄
方法一、sql="select   *   from   table   where   id<>null   "   
方法二、sql="select   *   from   table   where   len(id)>1"
方法二、select * from News where Newstype = "指定值" and newspic is not Null order by NewsID desc

查詢(xún)值為空的記錄 select * from News where Newstype = "指定值" and newspic is  Null order by NewsID desc
其它的反之