27,583
社区成员
发帖
与我相关
我的任务
分享

select top 20 * from
(
select E_Word,E_HY,E_LAN from A
except
select E_Word,E_HY,E_LAN from B) as TB
where xxx='xxx'
order by NEWID() select top 20 * from
(
select E_Word,E_HY,E_LAN from A
except
select E_Word,E_HY,E_LAN from B) as TB
order by NEWID()