mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
20 lines
499 B
Text
20 lines
499 B
Text
|
drop table if exists t1;
|
||
|
## Creating new table ##
|
||
|
CREATE TABLE t1
|
||
|
(
|
||
|
id INT NOT NULL auto_increment,
|
||
|
PRIMARY KEY (id),
|
||
|
name VARCHAR(30)
|
||
|
);
|
||
|
'#--------------------FN_DYNVARS_018_01-------------------------#'
|
||
|
SELECT @@general_log_file;
|
||
|
@@general_log_file
|
||
|
mysql-test.log
|
||
|
INSERT into t1(name) values('Record_1');
|
||
|
INSERT into t1(name) values('Record_2');
|
||
|
INSERT into t1(name) values('Record_3');
|
||
|
INSERT into t1(name) values('Record_4');
|
||
|
## Verifying general log file ##
|
||
|
## Dropping table ##
|
||
|
DROP TABLE t1;
|