Customise appearance of the navigation panel.
Customise the navigation tree.
Servers display options.
Databases display options.
Tables display options.
Customise default export options.
LOCK TABLES
Customise default options.
Customise default options
Scroll down to fill in the options for the selected format and ignore the options for other formats.
This format has no options
Add statements:
CREATE DATABASE / USE
DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT
/ TRIGGER
CREATE TABLE
IF NOT EXISTS
AUTO_INCREMENT
CREATE VIEW
OR REPLACE
CREATE PROCEDURE / FUNCTION / EVENT
CREATE TRIGGER
INSERT DELAYED
INSERT IGNORE
Syntax to use when inserting data:
INSERT
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,col_C) VALUES (1,2,3), (4,5,6), (7,8,9)
INSERT INTO tbl_name VALUES (1,2,3)