私のクエリは次のとおりで、その中にサブクエリが含まれています。
@catid int
AS
Select Top(1)
ID,
Title,
Description,
NewsType,
CreateTime,
ISNULL(( ImageURL2 ),'no-pic') As [News-Photo],
ISNULL(convert(nvarchar(50),ImageTime),'no-date') As [News-Date],
(select top(5) id,title From News ) as [SpLinks]
From News
Where (NewsType = @catid) and (AllowShow = 'True')
order by CreateTime Desc
サブクエリが EXISTS で導入されていない場合、選択リストで指定できる式は 1 つだけです。