select distinct(a.group_id) from jags_errorrecord a left join ucenter250.complat_group b on a.group_id = b.iid ;反选这条sql的数据
时间: 2024-02-24 16:58:36 浏览: 130
您可以使用以下 SQL 语句来反选这条 SQL 的数据:
```
SELECT DISTINCT(a.group_id)
FROM jags_errorrecord a
LEFT JOIN ucenter250.complat_group b ON a.group_id = b.iid
WHERE b.iid IS NULL;
```
在原始 SQL 语句的基础上,我们添加了一个 WHERE 子句,使用 IS NULL 来找出没有匹配的记录。具体地,我们在左连接的结果集中找出 b.iid 为 NULL 的记录,这些记录对应的 a.group_id 就是我们需要反选的数据。
阅读全文