Например есть таблица:
create table `test` (
`id` int not null auto_increment,
`dop_id` int not null,
`time` datetime not null
);
с записями
insert into `test` (`dop_id`, `time`) value (1,now());
insert into `test` (`dop_id`, `time`) value (1,now());
insert into `test` (`dop_id`, `time`) value (1,now());
insert into `test` (`dop_id`, `time`) value (2,now());
insert into `test` (`dop_id`, `time`) value (2,now());
insert into `test` (`dop_id`, `time`) value (2,now());
insert into `test` (`dop_id`, `time`) value (3,now());
insert into `test` (`dop_id`, `time`) value (3,now());
insert into `test` (`dop_id`, `time`) value (3,now());
нужно выбрать по одной последней записи c dop_id 1,2 и 3.
Похожие темы
- Форум [mysql] Чудо (2010)
- Форум составить «простой» SQL запрос (2006)
- Форум [sql] [mysql] Помогите составить запрос (2010)
- Форум переустановить auto_increment (2010)
- Форум Запрос sql (2014)
- Форум mysql запрос (2007)
- Форум [MySQL] кодировка передаваемых в процедуру параметров. (2011)
- Форум SQL+PHP (2010)
- Форум MySQL: multiple insert (2008)
- Форум Хранить историю изменений таблицы - другая таблица с ключом актуальной версии [SQL] (2022)