SQL Operations
Select
Executes the provided SQL statement. The SELECT statement is used to query data from the database.
operation (required) - must always be
sql
sql (required) - use standard SQL
Body
Response: 200
Insert
Executes the provided SQL statement. The INSERT statement is used to add one or more rows to a database table.
operation (required) - must always be
sql
sql (required) - use standard SQL
Body
Response: 200
Update
Executes the provided SQL statement. The UPDATE statement is used to change the values of specified attributes in one or more rows in a database table.
operation (required) - must always be
sql
sql (required) - use standard SQL
Body
Response: 200
Delete
Executes the provided SQL statement. The DELETE statement is used to remove one or more rows of data from a database table.
operation (required) - must always be
sql
sql (required) - use standard SQL
Body
Response: 200
Last updated