есть таблица notification (id,text,date) и notification_read (notification_id,user_id,date) когда пользователь открывает уведомление добавляется запись в таблицу notification_read. Нужно выбрать таблицу notification и рядом добавить колонку read (yes,no) если клиент прочитал тогда yes иначе no. Вот что я писал)
select n.id, text, n.date, (case nr.user_id when 78 then 'yes' else 'no' end) as 'read' from notification as n left join notification_read as nr on n.id=nr.notification_id where type=78 group by n.id;
не работает.
sqlfiddle.com/#!9/9a091d