Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
select model, type from product where type = 'Printer' and model=(select max(model) from product)
Столбец | Тип | Правило сортировки | Допустимость NULL | По умолчанию ---------+-----------------------+--------------------+-------------------+--------------------------------------- code | integer | | not null | nextval('product_code_seq'::regclass) model | integer | | not null | speed | smallint | | not null | ram | smallint | | not null | hd | real | | not null | cd | character varying(10) | | not null | price | numeric(12,2) | | | Индексы: "product_pkey" PRIMARY KEY, btree (code)
select 'Printer' AS type, max(model) AS model from product where type='Printer'
select max(model) from product