What is SOQL?
Salesforce Object Query Language (SOQL) queries Salesforce objects much like SQL queries tables — with relationship fields, parent-child subqueries, and date literals such as THIS_MONTH.
What SQLStudio supports
- SOQL dialect in SQL Formatter — pick SOQL (Salesforce) from the dialect list
- SOQL Playground — browse thousands of standard objects/fields, then format, minify, validate syntax, and inspect the parsed AST
How to use the playground
- Open SOQL Playground.
- Search the standard schema browser for an object (e.g. Account), pick fields, and click Use SELECT.
- Or paste a query / load a sample (subquery, aggregate, semi-join).
- Switch between Format, Minify, and AST modes.
- Copy the result into Developer Console, VS Code, or your API client.
The catalog covers Salesforce standard objects and fields only (no custom __c metadata). It does not connect to your org.
Privacy
Parsing and formatting run entirely in your browser. Queries never upload to a server — useful when SOQL contains customer filters or internal field names.