union
我想对语句的一侧进行排序,如下面的代码。但是不可能order by
只union
使用语句的一部分,当我使用view
具有的部分时order by
,这让我对整理中的冲突产生了一些错误。那么,我怎样才能仅通过union
声明的一侧订购?
select Creator
, CreateDate
, Subject
from tblWkfTicket
where tblWkfTicket.ID = @tikectID
union
select Creator
, CreateDate
, '' AS Subject
from tblWkfPost
where TicketID = @tikectID
order by tblWkfPost.ID
;