Здравствуйте, есть проблема:
Существует 2 таблицы:
1) Таблица с атомарными данными --> id, httpstatus
2) Таблица с множеством записей id, httpstatus, и.т.д.
По отдельности запросы работают:
1) mysql> select scsq_httpstatus.name from squid.scsq_httpstatus
-> \g
+----------+
| name |
+----------+
| TCP_MISS |
+----------+
2) mysql> select distinct scsq_temptraffic.httpstatus from squid.scsq_temptraffic
-> \g
+-------------+
| httpstatus |
+-------------+
| TCP_MISS |
| TCP_IMS_HIT |
| TCP_HIT |
+-------------+
А вот с применением if not exists
3) mysql> select distinct scsq_temptraffic.httpstatus from squid.scsq_temptraffic where not exists(select scsq_httpstatus.name from squid.scsq_httpstatu)
-> \g
Empty set (0.00 sec)
Прошу помощи сообщества.