You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Актуальные контакты:
Telegram: @Nikker_web
E-Mail: tarasevich.email@gmail.com
Портфолио https://www.behance.net/d4d4186e
Разрабатываю дизайн групп в соц сетях, сайтов, приложений, другой дизайн под заказ
Актуальные контакты:
Telegram: @Nikker_web
E-Mail: tarasevich.email@gmail.com
Разрабатываю дизайн групп в соц сетях, сайтов, приложений, другой дизайн под заказ
Портфолио https://www.behance.net/d4d4186e
Question
serg_ss
есть таблица
id id2 desc
1 1 text
2 1 text1
3 1 text2
4 2 text3
5 3 text4
6 4 text5
7 4 text6
8 4 text7
9 5 text8
Мне нужно сгруппировать по id2 и вывести максимальные id получить на выходе:
id id2 desc
3 1 text2
4 2 text3
5 3 text4
8 4 text7
9 5 text8
я пробовал:
SELECT max(id), id2, desc FROM test GROUP BY id2
id id2 desc
4 1 text
4 2 text3
5 3 text4
8 4 text5
9 5 text8
как видно что id стал максимальным но поле desc не соответствует id, еще пробовал:
SELECT id, id2, desc FROM test GROUP BY id2 ORDER BY id DESC
id id2 desc
9 5 text8
6 4 text5
5 3 text4
4 2 text3
1 1 text
Помогите с запросом.
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.