我有一个 MySQL JOIN 查询,其中连接了 2 个表以获取输出
select distinct (a.error_type),a.links_id, a.crawl_cycle , b.* from $table a inner join crawler_error_type b on a.error_type = b.error_type where a.projects_id = '$pid' and b.error_priority_page_level='High'
现在我想检查该字段的值error_type
是否存在于第三个表中。如果它存在,那么它不应该给我结果行。