⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 truncate.result

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 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 + -