Salve gente.
Avendo una tabella del tipo:
posts
idpost iduser post
E una commenti
idpost iduser commento
Dovrei stampare i post inerenti all'iduser di sessione (per esempio 1) e se il post contiene commenti anche quelli.
Sono riuscito ad ottenere quello che volevo eseguendo una sola query ma non so se è un metodo ottimale:
Consigli?Codice PHP:
SELECT * FROM posts AS p LEFT OUTER JOIN commenti AS c USING (idpost) WHERE p.iduser=1
Grazie.