Formatting
Seaquel can format your SQL instantly with a single keyboard shortcut.
Format your SQL
Section titled “Format your SQL”Press Cmd+Shift+F to format the entire editor contents.
Press Ctrl+Shift+F to format the entire editor contents.
The formatter applies proper indentation, line breaks, and uppercases SQL keywords for readability.
Before:
select u.name,count(o.id) as order_count from users u left join orders o on o.user_id=u.id where u.active=true group by u.name order by order_count descAfter:
SELECT u.name, COUNT(o.id) AS order_countFROM users u LEFT JOIN orders o ON o.user_id = u.idWHERE u.active = TRUEGROUP BY u.nameORDER BY order_count DESC