multi_update.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:14k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of update statement that uses many tables.
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t2,t3;
  6. drop database if exists mysqltest;
  7. --error 0,1141,1147
  8. revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
  9. --error 0,1141,1147
  10. revoke all privileges on mysqltest.* from mysqltest_1@localhost;
  11. delete from mysql.user where user=_binary'mysqltest_1';
  12. --enable_warnings
  13. create table t1(id1 int not null auto_increment primary key, t char(12));
  14. create table t2(id2 int not null, t char(12));
  15. create table t3(id3 int not null, t char(12), index(id3));
  16. disable_query_log;
  17. let $1 = 100;
  18. while ($1)
  19.  {
  20.   let $2 = 5;
  21.   eval insert into t1(t) values ('$1'); 
  22.   while ($2)
  23.    {
  24.      eval insert into t2(id2,t) values ($1,'$2'); 
  25.      let $3 = 10;
  26.      while ($3)
  27.      {
  28.        eval insert into t3(id3,t) values ($1,'$2'); 
  29.        dec $3;
  30.      }
  31.      dec $2; 
  32.    }
  33.   dec $1;
  34.  }
  35. enable_query_log;
  36. select count(*) from t1 where id1 > 95;
  37. select count(*) from t2 where id2 > 95;
  38. select count(*) from t3 where id3 > 95;
  39. update t1,t2,t3 set t1.t="aaa", t2.t="bbb", t3.t="cc" where  t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 90;
  40. select count(*) from t1 where t = "aaa";
  41. select count(*) from t1 where id1 > 90;
  42. select count(*) from t2 where t = "bbb";
  43. select count(*) from t2 where id2 > 90;
  44. select count(*) from t3 where t = "cc";
  45. select count(*) from t3 where id3 > 90;
  46. delete t1.*, t2.*, t3.*  from t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 95;
  47. check table t1, t2, t3;
  48. select count(*) from t1 where id1 > 95;
  49. select count(*) from t2 where id2 > 95;
  50. select count(*) from t3 where id3 > 95;
  51. delete t1, t2, t3  from t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 5;
  52. select count(*) from t1 where id1 > 5;
  53. select count(*) from t2 where id2 > 5;
  54. select count(*) from t3 where id3 > 5;
  55. delete from t1, t2, t3  using t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 0;
  56. # These queries will force a scan of the table
  57. select count(*) from t1 where id1;
  58. select count(*) from t2 where id2;
  59. select count(*) from t3 where id3;
  60. drop table t1,t2,t3;
  61. create table t1(id1 int not null  primary key, t varchar(100)) pack_keys = 1;
  62. create table t2(id2 int not null, t varchar(100), index(id2)) pack_keys = 1;
  63. disable_query_log;
  64. let $1 = 1000;
  65. while ($1)
  66.  {
  67.   let $2 = 5;
  68.   eval insert into t1 values ($1,'aaaaaaaaaaaaaaaaaaaa'); 
  69.   while ($2)
  70.    {
  71.      eval insert into t2(id2,t) values ($1,'bbbbbbbbbbbbbbbbb'); 
  72.      dec $2; 
  73.    }
  74.   dec $1;
  75.  }
  76. enable_query_log;
  77. delete t1  from t1,t2 where t1.id1 = t2.id2 and t1.id1 > 500;
  78. drop table t1,t2;
  79. CREATE TABLE t1 (
  80.   id int(11) NOT NULL default '0',
  81.   name varchar(10) default NULL,
  82.   PRIMARY KEY  (id)
  83. ) ENGINE=MyISAM;
  84. INSERT INTO t1 VALUES (1,'aaa'),(2,'aaa'),(3,'aaa');
  85. CREATE TABLE t2 (
  86.   id int(11) NOT NULL default '0',
  87.   name varchar(10) default NULL,
  88.   PRIMARY KEY  (id)
  89. ) ENGINE=MyISAM;
  90. INSERT INTO t2 VALUES (2,'bbb'),(3,'bbb'),(4,'bbb');
  91. CREATE TABLE t3 (
  92.   id int(11) NOT NULL default '0',
  93.   mydate datetime default NULL,
  94.   PRIMARY KEY  (id)
  95. ) ENGINE=MyISAM;
  96. INSERT INTO t3 VALUES (1,'2002-02-04 00:00:00'),(3,'2002-05-12 00:00:00'),(5,'2002-05-12 00:00:00'),(6,'2002-06-22
  97. 00:00:00'),(7,'2002-07-22 00:00:00');
  98. delete t1,t2,t3 from t1,t2,t3 where to_days(now())-to_days(t3.mydate)>=30 and t3.id=t1.id and t3.id=t2.id;
  99. select * from t3;
  100. DROP TABLE t1,t2,t3;
  101. CREATE TABLE IF NOT EXISTS `t1` (
  102.   `id` int(11) NOT NULL auto_increment,
  103.   `tst` text,
  104.   `tst1` text,
  105.   PRIMARY KEY  (`id`)
  106. ) ENGINE=MyISAM;
  107. CREATE TABLE IF NOT EXISTS `t2` (
  108.   `ID` int(11) NOT NULL auto_increment,
  109.   `ParId` int(11) default NULL,
  110.   `tst` text,
  111.   `tst1` text,
  112.   PRIMARY KEY  (`ID`),
  113.   KEY `IX_ParId_t2` (`ParId`),
  114.   FOREIGN KEY (`ParId`) REFERENCES `t1` (`id`)
  115. ) ENGINE=MyISAM;
  116. INSERT INTO t1(tst,tst1) VALUES("MySQL","MySQL AB"), ("MSSQL","Microsoft"), ("ORACLE","ORACLE");
  117. INSERT INTO t2(ParId) VALUES(1), (2), (3);
  118. select * from t2;
  119. UPDATE t2, t1 SET t2.tst = t1.tst, t2.tst1 = t1.tst1 WHERE t2.ParId = t1.Id;
  120. select * from t2;
  121. drop table t1, t2 ;
  122. create table t1 (n numeric(10));
  123. create table t2 (n numeric(10));
  124. insert into t2 values (1),(2),(4),(8),(16),(32);
  125. select * from t2 left outer join t1  using (n);
  126. delete  t1,t2 from t2 left outer join t1  using (n);
  127. select * from t2 left outer join t1  using (n);
  128. drop table t1,t2 ;
  129. #
  130. # Test with locking
  131. #
  132. create table t1 (n int(10) not null primary key, d int(10));
  133. create table t2 (n int(10) not null primary key, d int(10));
  134. insert into t1 values(1,1);
  135. insert into t2 values(1,10),(2,20);
  136. LOCK TABLES t1 write, t2 read;
  137. --error 1099
  138. DELETE t1.*, t2.* FROM t1,t2 where t1.n=t2.n;
  139. --error 1099
  140. UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
  141. UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
  142. unlock tables;
  143. LOCK TABLES t1 write, t2 write;
  144. UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
  145. select * from t1;
  146. DELETE t1.*, t2.* FROM t1,t2 where t1.n=t2.n;
  147. select * from t1;
  148. select * from t2;
  149. unlock tables;
  150. drop table t1,t2;
  151. #
  152. # Test safe updates and timestamps
  153. #
  154. set sql_safe_updates=1;
  155. create table t1 (n int(10), d int(10));
  156. create table t2 (n int(10), d int(10));
  157. insert into t1 values(1,1);
  158. insert into t2 values(1,10),(2,20);
  159. --error 1175
  160. UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
  161. set sql_safe_updates=0;
  162. drop table t1,t2;
  163. set timestamp=1038401397;
  164. create table t1 (n int(10) not null primary key, d int(10), t timestamp);
  165. create table t2 (n int(10) not null primary key, d int(10), t timestamp);
  166. insert into t1 values(1,1,NULL);
  167. insert into t2 values(1,10,NULL),(2,20,NULL);
  168. set timestamp=1038000000;
  169. UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
  170. select n,d,unix_timestamp(t) from t1;
  171. select n,d,unix_timestamp(t) from t2;
  172. --error 1064
  173. UPDATE t1,t2 SET 1=2 WHERE t1.n=t2.n;
  174. drop table t1,t2;
  175. set timestamp=0;
  176. set sql_safe_updates=0;
  177. create table t1 (n int(10) not null primary key, d int(10));
  178. create table t2 (n int(10) not null primary key, d int(10));
  179. insert into t1 values(1,1), (3,3);
  180. insert into t2 values(1,10),(2,20);
  181. UPDATE t2 left outer join t1 on t1.n=t2.n  SET t1.d=t2.d;
  182. select * from t1;
  183. select * from t2;
  184. drop table t1,t2;
  185. create table t1 (n int(10), d int(10));
  186. create table t2 (n int(10), d int(10));
  187. insert into t1 values(1,1),(1,2);
  188. insert into t2 values(1,10),(2,20);
  189. UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
  190. select * from t1;
  191. select * from t2;
  192. drop table t1,t2;
  193. create table t1 (n int(10), d int(10));
  194. create table t2 (n int(10), d int(10));
  195. insert into t1 values(1,1),(3,2);
  196. insert into t2 values(1,10),(1,20);
  197. UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
  198. select * from t1;
  199. select * from t2;
  200. UPDATE t1 a ,t2 b SET a.d=b.d,b.d=30 WHERE a.n=b.n;
  201. select * from t1;
  202. select * from t2;
  203. DELETE a, b  FROM t1 a,t2 b where a.n=b.n;
  204. select * from t1;
  205. select * from t2;
  206. drop table t1,t2;
  207. CREATE TABLE t1 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
  208. INSERT INTO t1 VALUES (1,'jedan'),(2,'dva'),(3,'tri'),(4,'xxxxxxxxxx'),(5,'a'),(10,''),(11,''),(12,''),(13,'');
  209. CREATE TABLE t2 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
  210. INSERT INTO t2 VALUES (1,'jedan'),(2,'dva'),(3,'tri'),(4,'xxxxxxxxxx'),(5,'a');
  211. CREATE TABLE t3 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
  212. INSERT INTO t3 VALUES (1,'jedan'),(2,'dva');
  213. update t1,t2 set t1.naziv="aaaa" where t1.broj=t2.broj;
  214. update t1,t2,t3 set t1.naziv="bbbb", t2.naziv="aaaa" where t1.broj=t2.broj and t2.broj=t3.broj;
  215. drop table t1,t2,t3;
  216. #
  217. # Test multi update with different join methods
  218. #
  219. CREATE TABLE t1 (a int not null primary key, b int not null, key (b));
  220. CREATE TABLE t2 (a int not null primary key, b int not null, key (b));
  221. INSERT INTO t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
  222. INSERT INTO t2 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
  223. # Full join, without key
  224. update t1,t2 set t1.a=t1.a+100;
  225. select * from t1;
  226. # unique key
  227. update t1,t2 set t1.a=t1.a+100 where t1.a=101;
  228. select * from t1;
  229. # ref key
  230. update t1,t2 set t1.b=t1.b+10 where t1.b=2;
  231. select * from t1;
  232. # Range key (in t1)
  233. update t1,t2 set t1.b=t1.b+2,t2.b=t1.b+10 where t1.b between 3 and 5 and t2.a=t1.a-100;
  234. select * from t1;
  235. select * from t2;
  236. # test for non-updating table which is also used in sub-select
  237. update 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);
  238. drop table t1,t2;
  239. 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;
  240. INSERT INTO t3 VALUES ('A',1,1,22,3.2,'R','R','BASE2',0.24,NULL);
  241. create table t1 (A varchar(1));
  242. insert into t1 values  ("A") ,("B"),("C"),("D");
  243. create table t2(Z varchar(15));
  244. 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;
  245. update t2,t3 set Z =param_scenario_costs;
  246. drop table t1,t2,t3;
  247. create table t1 (a int, b int);
  248. create table t2 (a int, b int);
  249. insert into t1 values (1,1),(2,1),(3,1);
  250. insert into t2 values (1,1), (3,1);
  251. 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;
  252. 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;
  253. drop table t1,t2;
  254. #
  255. # Test reuse of same table
  256. #
  257. create table t1 (a int not null auto_increment primary key, b int not null);
  258. insert into t1 (b) values (1),(2),(3),(4);
  259. update t1, t1 as t2 set t1.b=t2.b+1 where t1.a=t2.a;
  260. select * from t1;
  261. drop table t1;
  262. # Test multi-update and multi-delete with impossible where
  263. create table t1(id1 smallint(5), field char(5));
  264. create table t2(id2 smallint(5), field char(5));
  265. insert into t1 values (1, 'a'), (2, 'aa');
  266. insert into t2 values (1, 'b'), (2, 'bb');
  267. select * from t1;
  268. select * from t2;
  269. update t2 inner join t1 on t1.id1=t2.id2
  270.   set t2.field=t1.field
  271.   where 0=1;
  272. update t2, t1 set t2.field=t1.field
  273.   where t1.id1=t2.id2 and 0=1;
  274. delete t1, t2 from t2 inner join t1 on t1.id1=t2.id2
  275.   where 0=1;
  276. delete t1, t2 from t2,t1 
  277.   where t1.id1=t2.id2 and 0=1;
  278. drop table t1,t2;
  279. #
  280. # Test for bug #1820.
  281. #
  282. create table t1 ( a int not null, b int not null) ;
  283. --disable_query_log
  284. insert into t1 values (1,1),(2,2),(3,3),(4,4);
  285. let $1=19;
  286. set @d=4;
  287. while ($1)
  288. {
  289.   eval insert into t1 select a+@d,b+@d from t1;
  290.   eval set @d=@d*2;
  291.   dec $1;
  292. }
  293. --enable_query_log
  294. alter table t1 add index i1(a);
  295. delete from t1 where a > 2000000;
  296. create table t2 like t1;
  297. insert into t2 select * from t1;
  298. select 't2 rows before small delete', count(*) from t1;
  299. delete t1,t2 from t1,t2 where t1.b=t2.a and t1.a < 2;
  300. select 't2 rows after small delete', count(*) from t2;
  301. select 't1 rows after small delete', count(*) from t1;
  302. ## Try deleting many rows 
  303. delete t1,t2 from t1,t2 where t1.b=t2.a and t1.a < 100*1000;
  304. select 't2 rows after big delete', count(*) from t2;
  305. select 't1 rows after big delete', count(*) from t1;
  306. drop table t1,t2;
  307. #
  308. # Test alias (this is not correct in 4.0)
  309. #
  310. CREATE TABLE t1 ( a int );
  311. CREATE TABLE t2 ( a int );
  312. DELETE t1 FROM t1, t2 AS t3;
  313. DELETE t4 FROM t1, t1 AS t4;
  314. DELETE t3 FROM t1 AS t3, t1 AS t4;
  315. --error 1109
  316. DELETE t1 FROM t1 AS t3, t2 AS t4;
  317. INSERT INTO t1 values (1),(2);
  318. INSERT INTO t2 values (1),(2);
  319. DELETE t1 FROM t1 AS t2, t2 AS t1 where t1.a=t2.a and t1.a=1;
  320. SELECT * from t1;
  321. SELECT * from t2;
  322. DELETE t2 FROM t1 AS t2, t2 AS t1 where t1.a=t2.a and t1.a=2;
  323. SELECT * from t1;
  324. SELECT * from t2;
  325. DROP TABLE t1,t2;
  326. #
  327. # Test update with const tables
  328. #
  329. 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`) );
  330. 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`) );
  331. insert into t1 values (0,'A01-Comp',1);
  332. insert into t1 values (0,'B01-Comp',1);
  333. insert into t2 values (0,1,'A Note',1);
  334. update t1 left join t2 on p_id = c2_p_id set c2_note = 'asdf-1' where p_id = 2; 
  335. select * from t1;
  336. select * from t2;
  337. drop table t1, t2;
  338. #
  339. # privilege check for multiupdate with other tables
  340. #
  341. connect (root,localhost,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
  342. connection root;
  343. --disable_warnings
  344. create database mysqltest;
  345. --enable_warnings
  346. create table mysqltest.t1 (a int, b int, primary key (a));
  347. create table mysqltest.t2 (a int, b int, primary key (a));
  348. create table mysqltest.t3 (a int, b int, primary key (a));
  349. grant select on mysqltest.* to mysqltest_1@localhost;
  350. grant update on mysqltest.t1 to mysqltest_1@localhost;
  351. connect (user1,localhost,mysqltest_1,,mysqltest,$MASTER_MYPORT,$MASTER_MYSOCK);
  352. connection user1;
  353. update t1, t2 set t1.b=1 where t1.a=t2.a;
  354. update t1, t2 set t1.b=(select t3.b from t3 where t1.a=t3.a) where t1.a=t2.a;
  355. connection root;
  356. revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
  357. revoke all privileges on mysqltest.* from mysqltest_1@localhost;
  358. delete from mysql.user where user=_binary'mysqltest_1';
  359. drop database mysqltest;
  360. #
  361. # multi delete wrong table check
  362. #
  363. create table t1 (a int, primary key (a));
  364. create table t2 (a int, primary key (a));
  365. create table t3 (a int, primary key (a));
  366. -- error 1109
  367. delete t1,t3 from t1,t2 where t1.a=t2.a and t2.a=(select t3.a from t3 where t1.a=t3.a);
  368. drop table t1, t2, t3;
  369. #
  370. # multi* unique updating table check
  371. #
  372. create table t1 (col1 int); 
  373. create table t2 (col1 int);
  374. -- error 1093
  375. update t1,t2 set t1.col1 = (select max(col1) from t1) where t1.col1 = t2.col1;
  376. -- error 1093
  377. delete t1 from t1,t2 where t1.col1 < (select max(col1) from t1) and t1.col1 = t2.col1;
  378. drop table t1,t2;
  379. # Test for BUG#5837 - delete with outer join and const tables
  380. --disable_warnings
  381. create table t1 (
  382.   aclid bigint not null primary key, 
  383.   status tinyint(1) not null 
  384. ) engine = innodb;
  385. create table t2 (
  386.   refid bigint not null primary key, 
  387.   aclid bigint, index idx_acl(aclid) 
  388. ) engine = innodb;
  389. --enable_warnings
  390. insert into t2 values(1,null);
  391. delete t2, t1 from t2 left join t1 on (t2.aclid=t1.aclid) where t2.refid='1';
  392. drop table t1, t2;
  393. # End of 4.1 tests