SQL Operations
HarperDB encourages developers to utilize other querying tools over SQL for performance purposes. HarperDB SQL is intended for data investigation purposes and uses cases where performance is not a priority. SQL optimizations are on our roadmap for the future.
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