Customize appearance of the navigation panel.
Customize the navigation tree.
Servers display options.
Databases display options.
Tables display options.
Customize default export options.
Customize default options.
Customize default options
LOCK TABLES
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:
DROP TABLE
/ TRIGGER
CREATE TABLE
IF NOT EXISTS
AUTO_INCREMENT
CREATE VIEW
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)