Skip to content

Formatting

Seaquel can format your SQL instantly with a single keyboard shortcut.

Press Cmd+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 desc

After:

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 DESC