1. SQL queries with incorrect ordering of clauses will be automatically corrected.
2. For example:
select * from country order by name where name like 'U%'
Will be automatically corrected to:
select * from country where name like 'U%' order by name
3. The query result will be displayed with the auto correction.