My question may seem trivial or unimportant to some, but it still leaves me perplexed.
.
I noticed when viewing certain requests from people who helped me solve problems I had with my DB that the code used in their requests appeared in this form:
.
select "Role", "RoleID"
from "TROLES"
order by 1
.
When I create a new query and write this code the same way, LibreOffice saves it like this:
.
SELECT “Role”, “RoleID” FROM “TROles” ORDER BY 1
.
The first way is more readable and understandable for me. Why doesn’t LibreOffice take this into account at all? Is there a way to ensure that when we save the request the format is preserved?