27,582
社区成员




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()