SQL Converter · T-SQL → Snowflake
Convert T-SQL SQL to Snowflake
SQL Server to Snowflake swaps TOP for QUALIFY / LIMIT, [brackets] for "double quotes", ISNULL for NVL and + concatenation for ||. A mechanical formatter only re-indents — it won’t rewrite dialect-specific syntax. The AI converter in the app translates the query and the table below shows exactly what changes.
T-SQL — source
Snowflake — converted
What changes from T-SQL to Snowflake
| T-SQL | Snowflake | Why |
|---|---|---|
| TOP 3 | LIMIT 3 / QUALIFY | Snowflake uses LIMIT (or QUALIFY for per-group top-N). |
| [Identifier] | identifier | Bracket quoting becomes double-quote (or unquoted) identifiers. |
| ISNULL(x, 0) | NVL(x, 0) | Snowflake spells null-coalesce NVL / COALESCE. |