Here is my problem, I was asked to ensure that statements within a big project which are all wrapped like:
Select * from (Select ... order by column)
keep their ordering. This begs the question, is there some official source that defines that SQL select results keep their ordering?
To set this scenario into a grabbable yet minimal context:
Imagine you have a table with the name exampleTBL with columns A and B. You execute the statement:
Select * from (Select B from exampleTBL order by A);
will the results, independend from the used DBMS/Driver/Platform/...
be ordered by A?