0
使用此查詢:消息102,級別15,狀態1,第7行附近有語法錯誤)「
select *
from
(Select DISTINCT status
From MNPdata
where IMSI_no = 'abc'
)
我:
消息102,級別15,狀態1,行7附近有語法錯誤 ')'
使用此查詢:消息102,級別15,狀態1,第7行附近有語法錯誤)「
select *
from
(Select DISTINCT status
From MNPdata
where IMSI_no = 'abc'
)
我:
消息102,級別15,狀態1,行7附近有語法錯誤 ')'
給子查詢別名:
select *
from (
Select DISTINCT status From MNPdata where IMSI_no = 'abc'
) AS t
由於子查詢只選擇status
,你可以這樣做,而不是:
Select DISTINCT status From MNPdata where IMSI_no = 'abc'
用你的話,你的整個問題不應該僅僅由代碼組成。 – Dukeling