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

📄 delayed.result

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 RESULT
字号:
drop table if exists t1;create table t1 (a char(10), tmsp timestamp);insert into t1 set a = 1;insert delayed into t1 set a = 2;insert into t1 set a = 3, tmsp=NULL;insert delayed into t1 set a = 4;insert delayed into t1 set a = 5, tmsp = 19711006010203;insert delayed into t1 (a, tmsp) values (6, 19711006010203);insert delayed into t1 (a, tmsp) values (7, NULL);insert into t1 set a = 8,tmsp=19711006010203;select * from t1 where tmsp=0;a	tmspselect * from t1 where tmsp=19711006010203;a	tmsp5	1971-10-06 01:02:036	1971-10-06 01:02:038	1971-10-06 01:02:03drop table t1;create table t1 (a int not null auto_increment primary key, b char(10));insert delayed into t1 values (1,"b");insert delayed into t1 values (null,"c");insert delayed into t1 values (3,"d"),(null,"e");insert delayed into t1 values (3,"this will give an","error");ERROR 21S01: Column count doesn't match value count at row 1show status like 'not_flushed_delayed_rows';Variable_name	ValueNot_flushed_delayed_rows	0select * from t1;a	b1	b2	c3	d4	edrop table t1;create table t1 (a int not null primary key);insert into t1 values (1);insert delayed into t1 values (1);select * from t1;a1drop table t1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -