发布网友 发布时间:2022-04-14 11:42
共3个回答
热心网友 时间:2022-04-14 13:11
select distinct ABCDEF热心网友 时间:2022-04-14 14:29
select * from table1 a where not exists (select 1 from table2 b where a.a <> b.a and a.b<>b.b and a.c <> b.c)热心网友 时间:2022-04-14 16:04
ps/sql的语法和T-sql差不多,无外乎联接查询和嵌套子查询两种方式。