Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Como gerar apenas um valor máximo desta consulta no SQL?


use order e limit
ORDER BY 'people needed DESC' LIMIT 1 

EDITADO

como LIMIT não existe no sql

use ORDER BY e TOP
select TOP 1 .... ORDER BY 'people needed' DESC