2
使用SQL Server 2000如何選擇一個值列
ID Column1 column2
001 050 100
002 000 200
003 100 000
004 010 000
005 000 000
我想顯示從列1列2和值只。
試圖查詢
Select id, Column1, Column2 where column1 <> '000' and column2 <> '000'
-- Nothing data's displayed
Select id, Column1, Column2 where column1 <> '000' or column2 <> '000'
-- data's are displayed below
ID column1
001 050
003 100
004 010
期望輸出
ID column1 column2
001 050 100
002 200
003 100
004 010
如何使上述條件的查詢時,需要查詢幫助