10 lines
160 B
Plaintext
10 lines
160 B
Plaintext
USE test;
|
|
drop table if exists t1;
|
|
create table t1 (id integer);
|
|
set autocommit=0;
|
|
insert into t1 values(1);
|
|
select count(*) from t1;
|
|
count(*)
|
|
1
|
|
drop table t1;
|