Skip to content
Advertisement

How to retrieve all post and verify if user liked the post with an SQL query

I would like know how to retrieve all post and verify which one I liked with a dynamic UserId

the query that I tried is :

id content user_id pseudo score liked
3 Hhhkdk 83 Bxbbxnx 0 83
2 Heyy 83 Bxbbxnx 1 68
1 Hello 68 Test 0 68
1 Hello 68 Test 0 83

I think that I should introduce the ID : 68 in the request but I don’t know how

Two issue here:

  1. Don’t want see Double post ( like Hello )
  2. I only want see results with the userId 68 and If I didn’t liked one of these post, I would like see null on Liked column.

I don’t want to see 83 in liked column, only 68 OR null if I didn’t liked the post.

I would like this

id content user_id pseudo score liked
3 Hhhkdk 83 Bxbbxnx 0 NULL
2 Heyy 83 Bxbbxnx 1 68
1 Hello 68 Test 0 68

Need your help friends

Advertisement

Answer

here is how you can do it :

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement