发布网友 发布时间:2023-02-04 02:00
共3个回答
热心网友 时间:1天前
select A1.B1,A1.B2,A1.B3 from A1,A2 where A1.B1!=A2.B1 and A1.B2!=A2.B2热心网友 时间:1天前
select * from tb_item_method where item_name not in (select item_name from temp) and item_type not in (select item_type from temp)追问用and条件查询的少了很多,用or的条件试了一下,我验证一下看看。
热心网友 时间:1天前
select * from A1 where (B1,B2) not in (select B1,B2 from A2);追问我的实际命令如下,没有结果,如果括号里是单个字段值可以。这样的记录是肯定有的。