1DROP TABLE IF EXISTS t1;
2## Creating new table ##
3CREATE TABLE t1
4(
5id INT NOT NULL AUTO_INCREMENT,
6PRIMARY KEY (id),
7name VARCHAR(30)
8);
9'#--------------------FN_DYNVARS_018_01-------------------------#'
10SELECT @@general_log_file;
11@@general_log_file
12mysql-test.log
13INSERT INTO t1(name) VALUES('Record_1');
14INSERT INTO t1(name) VALUES('Record_2');
15INSERT INTO t1(name) VALUES('Record_3');
16INSERT INTO t1(name) VALUES('Record_4');
17## Verifying general log file ##
18## Dropping table ##
19DROP TABLE t1;
20