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

📄 multi_update.test

📁 开启mysql的远程连接的方法 mysql-noinstall-5.1.6-alpha-win32.zip
💻 TEST
📖 第 1 页 / 共 2 页
字号:
# test for non-updating table which is also used in sub-selectupdate t1,t2 set t1.b=t2.b, t1.a=t2.a where t1.a=t2.a and not exists (select * from t2 where t2.a > 10);drop table t1,t2;CREATE TABLE t3 (  KEY1 varchar(50) NOT NULL default '',  PARAM_CORR_DISTANCE_RUSH double default NULL,  PARAM_CORR_DISTANCE_GEM double default NULL,  PARAM_AVG_TARE double default NULL,  PARAM_AVG_NB_DAYS double default NULL,  PARAM_DEFAULT_PROP_GEM_SRVC varchar(50) default NULL,  PARAM_DEFAULT_PROP_GEM_NO_ETIK varchar(50) default NULL,  PARAM_SCENARIO_COSTS varchar(50) default NULL,  PARAM_DEFAULT_WAGON_COST double default NULL,  tmp int(11) default NULL,  PRIMARY KEY  (KEY1)) ENGINE=MyISAM;INSERT INTO t3 VALUES ('A',1,1,22,3.2,'R','R','BASE2',0.24,NULL);create table t1 (A varchar(1));insert into t1 values  ("A") ,("B"),("C"),("D");create table t2(Z varchar(15));insert into t2(Z)  select concat(a.a,b.a,c.a,d.a) from t1 as a, t1 as b, t1 as c, t1 as d;update t2,t3 set Z =param_scenario_costs;drop table t1,t2,t3;create table t1 (a int, b int);create table t2 (a int, b int);insert into t1 values (1,1),(2,1),(3,1);insert into t2 values (1,1), (3,1);update t1 left join t2  on t1.a=t2.a set t1.b=2, t2.b=2 where t1.b=1 and t2.b=1 or t2.a is NULL;select t1.a, t1.b,t2.a, t2.b from t1 left join t2  on t1.a=t2.a where t1.b=1 and t2.b=1 or t2.a is NULL;drop table t1,t2;## Test reuse of same table#create table t1 (a int not null auto_increment primary key, b int not null);insert into t1 (b) values (1),(2),(3),(4);update t1, t1 as t2 set t1.b=t2.b+1 where t1.a=t2.a;select * from t1;drop table t1;# Test multi-update and multi-delete with impossible wherecreate table t1(id1 smallint(5), field char(5));create table t2(id2 smallint(5), field char(5));insert into t1 values (1, 'a'), (2, 'aa');insert into t2 values (1, 'b'), (2, 'bb');select * from t1;select * from t2;update t2 inner join t1 on t1.id1=t2.id2  set t2.field=t1.field  where 0=1;update t2, t1 set t2.field=t1.field  where t1.id1=t2.id2 and 0=1;delete t1, t2 from t2 inner join t1 on t1.id1=t2.id2  where 0=1;delete t1, t2 from t2,t1   where t1.id1=t2.id2 and 0=1;drop table t1,t2;## Test for bug #1820.#create table t1 ( a int not null, b int not null) ;--disable_query_loginsert into t1 values (1,1),(2,2),(3,3),(4,4);let $1=19;set @d=4;while ($1){  eval insert into t1 select a+@d,b+@d from t1;  eval set @d=@d*2;  dec $1;}--enable_query_logalter table t1 add index i1(a);delete from t1 where a > 2000000;create table t2 like t1;insert into t2 select * from t1;select 't2 rows before small delete', count(*) from t1;delete t1,t2 from t1,t2 where t1.b=t2.a and t1.a < 2;select 't2 rows after small delete', count(*) from t2;select 't1 rows after small delete', count(*) from t1;## Try deleting many rows delete t1,t2 from t1,t2 where t1.b=t2.a and t1.a < 100*1000;select 't2 rows after big delete', count(*) from t2;select 't1 rows after big delete', count(*) from t1;drop table t1,t2;## Test alias (this is not correct in 4.0)#CREATE TABLE t1 ( a int );CREATE TABLE t2 ( a int );DELETE t1 FROM t1, t2 AS t3;DELETE t4 FROM t1, t1 AS t4;DELETE t3 FROM t1 AS t3, t1 AS t4;--error 1109DELETE t1 FROM t1 AS t3, t2 AS t4;INSERT INTO t1 values (1),(2);INSERT INTO t2 values (1),(2);DELETE t1 FROM t1 AS t2, t2 AS t1 where t1.a=t2.a and t1.a=1;SELECT * from t1;SELECT * from t2;DELETE t2 FROM t1 AS t2, t2 AS t1 where t1.a=t2.a and t1.a=2;SELECT * from t1;SELECT * from t2;DROP TABLE t1,t2;## Test update with const tables#create table `t1` (`p_id` int(10) unsigned NOT NULL auto_increment, `p_code` varchar(20) NOT NULL default '', `p_active` tinyint(1) unsigned NOT NULL default '1', PRIMARY KEY (`p_id`) );create table `t2` (`c2_id` int(10) unsigned NULL auto_increment, `c2_p_id` int(10) unsigned NOT NULL default '0', `c2_note` text NOT NULL, `c2_active` tinyint(1) unsigned NOT NULL default '1', PRIMARY KEY (`c2_id`), KEY `c2_p_id` (`c2_p_id`) );insert into t1 values (0,'A01-Comp',1);insert into t1 values (0,'B01-Comp',1);insert into t2 values (0,1,'A Note',1);update t1 left join t2 on p_id = c2_p_id set c2_note = 'asdf-1' where p_id = 2; select * from t1;select * from t2;drop table t1, t2;## privilege check for multiupdate with other tables#connect (root,localhost,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK);connection root;--disable_warningscreate database mysqltest;--enable_warningscreate table mysqltest.t1 (a int, b int, primary key (a));create table mysqltest.t2 (a int, b int, primary key (a));create table mysqltest.t3 (a int, b int, primary key (a));grant select on mysqltest.* to mysqltest_1@localhost;grant update on mysqltest.t1 to mysqltest_1@localhost;connect (user1,localhost,mysqltest_1,,mysqltest,$MASTER_MYPORT,$MASTER_MYSOCK);connection user1;update t1, t2 set t1.b=1 where t1.a=t2.a;update t1, t2 set t1.b=(select t3.b from t3 where t1.a=t3.a) where t1.a=t2.a;connection root;revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;revoke all privileges on mysqltest.* from mysqltest_1@localhost;delete from mysql.user where user=_binary'mysqltest_1';drop database mysqltest;## multi delete wrong table check#create table t1 (a int, primary key (a));create table t2 (a int, primary key (a));create table t3 (a int, primary key (a));-- error 1109delete t1,t3 from t1,t2 where t1.a=t2.a and t2.a=(select t3.a from t3 where t1.a=t3.a);drop table t1, t2, t3;## multi* unique updating table check#create table t1 (col1 int); create table t2 (col1 int);-- error 1093update t1,t2 set t1.col1 = (select max(col1) from t1) where t1.col1 = t2.col1;-- error 1093delete t1 from t1,t2 where t1.col1 < (select max(col1) from t1) and t1.col1 = t2.col1;drop table t1,t2;# Test for BUG#5837 - delete with outer join and const tables--disable_warningscreate table t1 (  aclid bigint not null primary key,   status tinyint(1) not null ) engine = innodb;create table t2 (  refid bigint not null primary key,   aclid bigint, index idx_acl(aclid) ) engine = innodb;--enable_warningsinsert into t2 values(1,null);delete t2, t1 from t2 left join t1 on (t2.aclid=t1.aclid) where t2.refid='1';drop table t1, t2;# End of 4.1 tests## Test for bug #1980.#--disable_warningscreate table t1 ( c char(8) not null ) engine=innodb;--enable_warningsinsert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');alter table t1 add b char(8) not null;alter table t1 add a char(8) not null;alter table t1 add primary key (a,b,c);update t1 set a=c, b=c;create table t2 like t1;insert into t2 select * from t1;delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;drop table t1,t2;--disable_warningscreate table t1 ( c char(8) not null ) engine=bdb;--enable_warningsinsert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');alter table t1 add b char(8) not null;alter table t1 add a char(8) not null;alter table t1 add primary key (a,b,c);update t1 set a=c, b=c;create table t2 like t1;insert into t2 select * from t1;delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;drop table t1,t2;## Test alter table and a concurrent multi update# (This will force update to reopen tables)#create table t1 (a int, b int);insert into t1 values (1, 2), (2, 3), (3, 4);create table t2 (a int);insert into t2 values (10), (20), (30);create view v1 as select a as b, a/10 as a from t2;connect (locker,localhost,root,,test);connection locker;lock table t1 write;connect (changer,localhost,root,,test);connection changer;send alter table t1 add column c int default 100 after a;connect (updater,localhost,root,,test);connection updater;sleep 2;send update t1, v1 set t1.b=t1.a+t1.b+v1.b where t1.a=v1.a;connection locker;sleep 2;unlock tables;connection changer;reap;connection updater;reap;select * from t1;select * from t2;drop view v1;drop table t1, t2;

⌨️ 快捷键说明

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