You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
text:'SELECT comments.* , users.user_name FROM comments INNER JOIN posts ON comments.on_post_id=posts.id INNER JOIN users ON comments.user_id =users.id WHERE posts.id=$1',
if your query needs to make +3 JOINs it's better to separate it to multiple queries, at least it's reduce the complexity.
The text was updated successfully, but these errors were encountered:
mini-hackathon/reddit_Ramy/src/database/queries/get_comments_q.js
Line 5 in 793a08d
if your query needs to make +3 JOINs it's better to separate it to multiple queries, at least it's reduce the complexity.
The text was updated successfully, but these errors were encountered: