mysql sorgu yardıma ihtiyacı

0 Cevap php

i Aşağıdaki tabloda kurulum var:

tablo adı posts

Id, user_id, title, content, date

Now i need to select the lastest(last) post of each user from above table Can anyone help how can we do this?

Şu anda ben kullanıyorum

SELECT * FROM `posts` GROUP BY `user_id`
ORDER BY `ID` asc

ama aslında sadece her kullanıcının ilk mesajını getirir ama her kullanıcının son görevini gerekir

Herkes yardımcı olabilir?

0 Cevap