Scroll down to fill in the options for the selected format and ignore the options for other formats.
This format has no options
(Generates a report containing the data of a single table)
DROP DATABASE
Add statements:
CREATE DATABASE / USE
DROP TABLE / VIEW / PROCEDURE / FUNCTION
/ EVENT
CREATE PROCEDURE / FUNCTION / EVENT
CREATE TABLE
IF NOT EXISTS
AUTO_INCREMENT
Instead of INSERT statements, use:
INSERT
INSERT DELAYED
INSERT IGNORE
Syntax to use when inserting data:
INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)
INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)
INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)
INSERT INTO tbl_name VALUES (1,2,3)