DML commands
Load data with a SQL statement.
For a step-by-step tutorial on how to load data via DML with example code included, visit the Load data to your table page.
If your data is small, good ol' fashioned INSERT
statements may be the simplest solution. For example, your dapp could issue an API request to add (or update, or delete) small amounts of data based on user activity.
To load data, you can run INSERT
statements in a few places:
- SQL API DML endpoint
- JDBC driver
- Coming soon: Space and Time dapp
For more information on writing SQL, visit the Writing SQL page.
Updated about 20 hours ago