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

2020亚洲男人天堂,铁血战士在线观看完整版电影中文,亚洲精品小说,99国产精品久久久久99打野战,欧美性性性性性,日韩大片在线播放,欧美日韩国产第一区

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

查詢非空記錄
方法一、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

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