Mysql
 sql >> Database >  >> RDS >> Mysql

Ottieni thread recenti a cui l'utente non si è unito

Se ho capito di cosa hai bisogno

SELECT t.*, jt.*
FROM thread t 
LEFT JOIN joined_threads jt ON jt.thread_id = t.unique_id AND jt.saved_by = '$user_id' 
WHERE t.owner <> '$user_id' AND jt.thread_id is NULL
GROUP BY t.unique_id

(non testato). A proposito, per cosa hai bisogno di jt.*, sarebbe sempre NULL