SOQL Builder

The SOQL Builder gives you a visual interface to construct and run SOQL queries against any Salesforce org. No need to memorize syntax or guess field names.

Features

Visual Query Builder

Select your object, pick fields from a dropdown, add WHERE clauses, set ORDER BY and LIMIT — the SOQL is generated in real time as you build.

  • Select from all standard and custom objects
  • Checkbox field picker with search
  • Visual WHERE clause builder (field, operator, value)
  • ORDER BY with ASC/DESC toggle
  • LIMIT slider (1–2000)

Query Editor

Switch to the raw SQL editor at any time to fine-tune your query or paste an existing one.

  • Syntax highlighting for SOQL keywords
  • Field name autocomplete
  • Error highlighting with helpful messages
  • Query history (last 20 queries)

Results Table

Results are displayed in a sortable, filterable table. You can:

  • Sort any column ascending or descending
  • Filter rows by keyword
  • Click any record ID to open it in Salesforce
  • Expand relationship fields

Export Options

Export your results in multiple formats:

  • CSV — comma-separated for Excel/Sheets
  • JSON — structured data for developers
  • Copy to clipboard — paste anywhere

Trial & Pro Access

During your 7-day free trial, SOQL Builder is fully unlocked. After the trial, subscribe to Pro ($5/mo) for unlimited access.

Example Queries

``sql

-- Find all active users

SELECT Id, Name, Email, Profile.Name

FROM User

WHERE IsActive = true

ORDER BY Name ASC

LIMIT 50

-- Custom object with relationship query

SELECT Id, Name, Account.Name, CreatedDate

FROM Contact

WHERE Account.Type = 'Customer'

ORDER BY CreatedDate DESC

LIMIT 100

``