
02.06.2011, 10:59
|
 |
Местный
|
|
Регистрация: 25.02.2009
Адрес: Минск
Сообщения: 551
Версия Delphi: 2007
Репутация: 110
|
|
Код:
select executioner_id, count(executioner_id) as num
from "appointment(procedures)"
having count(executioner_id) =
(select max(count(executioner_id))
from "appointment(procedures)"
group by executioner_id)
group by executioner_id
|