我花了大約4個小時就這一點,但我不能找到答案,我要像集團從兩個查詢的結果
的結果拒絕
somefilename1.txt - 從別的拒絕(如果沒有文件,則沒有表達(無 - 無效) - 查詢1) somefilename2.txt - 上(如果沒有文件則沒有從別的表達(否 - 有效)-Query 2)
我不明白我做了什麼,我用聯合所有或案例表達。 PLZ幫助我。
QUERY1:
if exists (select NULL from table1 where Column1 = 'File1')
select distinct Column1 +'-'+ 'Rejected' as 'Rejects' from table1
where Column1 = 'File1'
else
select 'No' as 'Invalid'
QUERY2:
if exists (select NULL from table1 where Column1 = 'File2')
select distinct Column1 +'-'+ 'Previous' as 'Rejects' from table1
where column1 = 'File2'
else
select 'No' as 'valid'
感謝
您已爲此網站選擇了錯誤的方言。 – zerkms 2010-11-01 00:45:31
我很抱歉。我是新來的。 – mike 2010-11-01 00:46:13
Neo,歡迎來到堆棧溢出 - 只是一個提示,「PLZ幫助我這個」真的不是一個好的標題 - 它會導致人們像已經發生的那樣降低你的問題。只要嘗試「從兩個查詢分組結果」或其他...你可以編輯它,所以沒問題。 – makdad 2010-11-01 00:46:55