Converting SQL to JavaScript API
Many common SQL queries can be written using the JavaScript API, provided by the SDK to wrap Data API calls. Below are a few examples of conversions between SQL and JavaScript patterns.
Select statement with basic clauses
Select a set of columns from a single table with where, order by, and limit clauses.
Select statement with complex Boolean Logic clause
Select all columns from a single table with a complex where clause: OR AND OR
Select all columns from a single table with a complex where clause: AND OR AND