mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
14 lines
325 B
Text
14 lines
325 B
Text
|
drop table if exists t1,t2;
|
||
|
create table t1 (word varchar(20)) -- create table t1;
|
||
|
create table t2 (word varchar(20)) -- create table t2;
|
||
|
load data infile '../std_data_ln/words.dat' into table t1 -- load data to t1;
|
||
|
insert into t2 values ("Ada");
|
||
|
flush logs;
|
||
|
select * from t2;
|
||
|
word
|
||
|
Ada
|
||
|
flush logs;
|
||
|
select * from t2;
|
||
|
word
|
||
|
Ada
|