In LibreOffice Base I want to, as reduced example, query the following:
SELECT *
FROM
(
SELECT "ROWname"
FROM "TABULARname"
ORDER BY "ROWname"
);
The Error statement is:
Cannot be in ORDER BY clause in statement [SELECT*FROM(SELECT"ROWname" FROM "TABULARname" ORDER BY "ROWname")]
Without the outer query {SELECT * FROM (…);
} it works. So what's the reason it can't be in an ORDER BY
clause in that statement?