📄 truncate.result
字号:
drop table if exists t1;create table t1 (a integer, b integer,c1 CHAR(10));insert into t1 (a) values (1),(2);truncate table t1;select count(*) from t1;count(*)0insert into t1 values(1,2,"test");select count(*) from t1;count(*)1delete from t1;select * from t1;a b c1drop table t1;select count(*) from t1;ERROR 42S02: Table 'test.t1' doesn't existcreate temporary table t1 (n int);insert into t1 values (1),(2),(3);truncate table t1;select * from t1;ndrop table t1;truncate non_existing_table;ERROR 42S02: Table 'test.non_existing_table' doesn't existcreate table t1 (a integer auto_increment primary key);insert into t1 (a) values (NULL),(NULL);truncate table t1;insert into t1 (a) values (NULL),(NULL);SELECT * from t1;a12delete from t1;insert into t1 (a) values (NULL),(NULL);SELECT * from t1;a34drop table t1;create temporary table t1 (a integer auto_increment primary key);insert into t1 (a) values (NULL),(NULL);truncate table t1;insert into t1 (a) values (NULL),(NULL);SELECT * from t1;a12delete from t1;insert into t1 (a) values (NULL),(NULL);SELECT * from t1;a34drop table t1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -