“2 valor máximo em SQL” Respostas de código

sql max de dois valores

-- For SQL Server >= 2008
SELECT [Other Fields],
  (SELECT Max(v) 
   FROM (VALUES (date1), (date2), (date3),...) AS value(v)) as [MaxDate]
FROM [YourTableName]

/* Note (from comments): From value(v), "value" is the alias for the 
 * virtual table and "v" is the name of the virtual column of the date values.
 */
one1lion

2 valor máximo em SQL

SELECT MAX (column_name) 
FROM table_name 
WHERE column_name NOT IN (SELECT Max (column_name) 
                          FROM table_name);
Old-fashioned Otter

Respostas semelhantes a “2 valor máximo em SQL”

Perguntas semelhantes a “2 valor máximo em SQL”

Mais respostas relacionadas para “2 valor máximo em SQL” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código