Query data from tables
Insert item into DynamoDB
Insert document into index
Insert data into tables
INSERT INTO
Add new records to MySQL tables.
Insert single record
INSERT INTO users (name, email) VALUES ('John', 'john@example.com');
Insert multiple records
INSERT INTO users (name, email) VALUES ('Alice', 'alice@example.com'), ('Bob', 'bob@example.com');
Insert a new row above
Add a single document to a collection
Add multiple documents at once