I have a table with 2 columns.
Date_Réserve(type of Date), Heure_Réserve(type of Time)
What I want to do is select the result ordered by the Date_Réserve and then thie result I get is ordered by Heure_Réserve.
this is the query I tried :
select * from (select Date_Réserve,Heure_Réserve from réserve order by Date_Réserve)t order by Heure_Réserve
But It gives me this error:
The ORDER BY clause is invalid in views, inline functions, derived tables, and subqueries, unless TOP is also specified.