0

使用此查询:

select *
from
      ( Select   DISTINCT status
        From MNPdata
        where  IMSI_no = 'abc'

       )

我有:

消息 102,级别 15,状态 1,第 7 行 ')' 附近的语法不正确

4

1 回答 1

3

给子查询一个别名:

select * 
from ( 
  Select DISTINCT status From MNPdata where IMSI_no = 'abc'
) AS t

由于子查询仅选择status,您可以这样做:

Select DISTINCT status From MNPdata where IMSI_no = 'abc'
于 2013-10-03T08:21:58.123 回答