首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

以次sql語句哪裏有問題?請各位大蝦幫忙!

2011-12-11 
以下sql語句哪裏有問題?請各位大蝦幫忙!急!語句如下:select*fromProduct_db.dbo.File_Publish_TabwhereBit

以下sql語句哪裏有問題?請各位大蝦幫忙!急!
語句如下:
select   *   from   Product_db.dbo.File_Publish_Tab   where     Bitem= '文件 '   and   Fno= 'EW-101 '   and   Fver < 'B '   and   FrecY <> 'Y ';
不加and   FrecY <> 'Y '則正確,爲什麽?

[解决办法]
try


select * from Product_db.dbo.File_Publish_Tab where Bitem= '文件 ' and Fno= 'EW-101 ' and Fver < 'B ' and (FrecY Is Null Or FrecY <> 'Y ')
[解决办法]
select * from Product_db.dbo.File_Publish_Tab where Bitem= '文件 ' and Fno= 'EW-101 ' and Fver < 'B ' and (FrecY <> 'Y ' or FrecY is null)

热点排行