Cita:
Iniciado por Libras La tabla temporal que pongo es para que te guies con la que tu tienes.......
para que entiendas con tu ejemplo:
select * from(
select top(1) valor1
from mi_tabla
where valor=3
order by fecha_valor desc
) t1
union all
select * from (
select valor1
from mi_tabla
where valor=3
order by fecha_valor desc )t2
Libras, de esta forma sale este error :
"Msg 1033, Level 15, State 1, Line 20
The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions, unless TOP or FOR XML is also specified."