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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2,t3;
  2. drop database if exists mysqltest;
  3. revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
  4. revoke all privileges on mysqltest.* from mysqltest_1@localhost;
  5. delete from mysql.user where user=_binary'mysqltest_1';
  6. create table t1(id1 int not null auto_increment primary key, t char(12));
  7. create table t2(id2 int not null, t char(12));
  8. create table t3(id3 int not null, t char(12), index(id3));
  9. select count(*) from t1 where id1 > 95;
  10. count(*)
  11. 5
  12. select count(*) from t2 where id2 > 95;
  13. count(*)
  14. 25
  15. select count(*) from t3 where id3 > 95;
  16. count(*)
  17. 250
  18. 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;
  19. select count(*) from t1 where t = "aaa";
  20. count(*)
  21. 10
  22. select count(*) from t1 where id1 > 90;
  23. count(*)
  24. 10
  25. select count(*) from t2 where t = "bbb";
  26. count(*)
  27. 50
  28. select count(*) from t2 where id2 > 90;
  29. count(*)
  30. 50
  31. select count(*) from t3 where t = "cc";
  32. count(*)
  33. 500
  34. select count(*) from t3 where id3 > 90;
  35. count(*)
  36. 500
  37. delete t1.*, t2.*, t3.*  from t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 95;
  38. check table t1, t2, t3;
  39. Table Op Msg_type Msg_text
  40. test.t1 check status OK
  41. test.t2 check status OK
  42. test.t3 check status OK
  43. select count(*) from t1 where id1 > 95;
  44. count(*)
  45. 0
  46. select count(*) from t2 where id2 > 95;
  47. count(*)
  48. 0
  49. select count(*) from t3 where id3 > 95;
  50. count(*)
  51. 0
  52. delete t1, t2, t3  from t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 5;
  53. select count(*) from t1 where id1 > 5;
  54. count(*)
  55. 0
  56. select count(*) from t2 where id2 > 5;
  57. count(*)
  58. 0
  59. select count(*) from t3 where id3 > 5;
  60. count(*)
  61. 0
  62. delete from t1, t2, t3  using t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 0;
  63. select count(*) from t1 where id1;
  64. count(*)
  65. 0
  66. select count(*) from t2 where id2;
  67. count(*)
  68. 0
  69. select count(*) from t3 where id3;
  70. count(*)
  71. 0
  72. drop table t1,t2,t3;
  73. create table t1(id1 int not null  primary key, t varchar(100)) pack_keys = 1;
  74. create table t2(id2 int not null, t varchar(100), index(id2)) pack_keys = 1;
  75. delete t1  from t1,t2 where t1.id1 = t2.id2 and t1.id1 > 500;
  76. drop table t1,t2;
  77. CREATE TABLE t1 (
  78. id int(11) NOT NULL default '0',
  79. name varchar(10) default NULL,
  80. PRIMARY KEY  (id)
  81. ) ENGINE=MyISAM;
  82. INSERT INTO t1 VALUES (1,'aaa'),(2,'aaa'),(3,'aaa');
  83. CREATE TABLE t2 (
  84. id int(11) NOT NULL default '0',
  85. name varchar(10) default NULL,
  86. PRIMARY KEY  (id)
  87. ) ENGINE=MyISAM;
  88. INSERT INTO t2 VALUES (2,'bbb'),(3,'bbb'),(4,'bbb');
  89. CREATE TABLE t3 (
  90. id int(11) NOT NULL default '0',
  91. mydate datetime default NULL,
  92. PRIMARY KEY  (id)
  93. ) ENGINE=MyISAM;
  94. 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
  95. 00:00:00'),(7,'2002-07-22 00:00:00');
  96. 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;
  97. select * from t3;
  98. id mydate
  99. 1 2002-02-04 00:00:00
  100. 5 2002-05-12 00:00:00
  101. 6 2002-06-22 00:00:00
  102. 7 2002-07-22 00:00:00
  103. DROP TABLE t1,t2,t3;
  104. CREATE TABLE IF NOT EXISTS `t1` (
  105. `id` int(11) NOT NULL auto_increment,
  106. `tst` text,
  107. `tst1` text,
  108. PRIMARY KEY  (`id`)
  109. ) ENGINE=MyISAM;
  110. CREATE TABLE IF NOT EXISTS `t2` (
  111. `ID` int(11) NOT NULL auto_increment,
  112. `ParId` int(11) default NULL,
  113. `tst` text,
  114. `tst1` text,
  115. PRIMARY KEY  (`ID`),
  116. KEY `IX_ParId_t2` (`ParId`),
  117. FOREIGN KEY (`ParId`) REFERENCES `t1` (`id`)
  118. ) ENGINE=MyISAM;
  119. INSERT INTO t1(tst,tst1) VALUES("MySQL","MySQL AB"), ("MSSQL","Microsoft"), ("ORACLE","ORACLE");
  120. INSERT INTO t2(ParId) VALUES(1), (2), (3);
  121. select * from t2;
  122. ID ParId tst tst1
  123. 1 1 NULL NULL
  124. 2 2 NULL NULL
  125. 3 3 NULL NULL
  126. UPDATE t2, t1 SET t2.tst = t1.tst, t2.tst1 = t1.tst1 WHERE t2.ParId = t1.Id;
  127. select * from t2;
  128. ID ParId tst tst1
  129. 1 1 MySQL MySQL AB
  130. 2 2 MSSQL Microsoft
  131. 3 3 ORACLE ORACLE
  132. drop table t1, t2 ;
  133. create table t1 (n numeric(10));
  134. create table t2 (n numeric(10));
  135. insert into t2 values (1),(2),(4),(8),(16),(32);
  136. select * from t2 left outer join t1  using (n);
  137. n n
  138. 1 NULL
  139. 2 NULL
  140. 4 NULL
  141. 8 NULL
  142. 16 NULL
  143. 32 NULL
  144. delete  t1,t2 from t2 left outer join t1  using (n);
  145. select * from t2 left outer join t1  using (n);
  146. n n
  147. drop table t1,t2 ;
  148. create table t1 (n int(10) not null primary key, d int(10));
  149. create table t2 (n int(10) not null primary key, d int(10));
  150. insert into t1 values(1,1);
  151. insert into t2 values(1,10),(2,20);
  152. LOCK TABLES t1 write, t2 read;
  153. DELETE t1.*, t2.* FROM t1,t2 where t1.n=t2.n;
  154. ERROR HY000: Table 't2' was locked with a READ lock and can't be updated
  155. UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
  156. ERROR HY000: Table 't2' was locked with a READ lock and can't be updated
  157. UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
  158. unlock tables;
  159. LOCK TABLES t1 write, t2 write;
  160. UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
  161. select * from t1;
  162. n d
  163. 1 10
  164. DELETE t1.*, t2.* FROM t1,t2 where t1.n=t2.n;
  165. select * from t1;
  166. n d
  167. select * from t2;
  168. n d
  169. 2 20
  170. unlock tables;
  171. drop table t1,t2;
  172. set sql_safe_updates=1;
  173. create table t1 (n int(10), d int(10));
  174. create table t2 (n int(10), d int(10));
  175. insert into t1 values(1,1);
  176. insert into t2 values(1,10),(2,20);
  177. UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
  178. ERROR HY000: You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
  179. set sql_safe_updates=0;
  180. drop table t1,t2;
  181. set timestamp=1038401397;
  182. create table t1 (n int(10) not null primary key, d int(10), t timestamp);
  183. create table t2 (n int(10) not null primary key, d int(10), t timestamp);
  184. insert into t1 values(1,1,NULL);
  185. insert into t2 values(1,10,NULL),(2,20,NULL);
  186. set timestamp=1038000000;
  187. UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
  188. select n,d,unix_timestamp(t) from t1;
  189. n d unix_timestamp(t)
  190. 1 10 1038000000
  191. select n,d,unix_timestamp(t) from t2;
  192. n d unix_timestamp(t)
  193. 1 10 1038401397
  194. 2 20 1038401397
  195. UPDATE t1,t2 SET 1=2 WHERE t1.n=t2.n;
  196. ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1=2 WHERE t1.n=t2.n' at line 1
  197. drop table t1,t2;
  198. set timestamp=0;
  199. set sql_safe_updates=0;
  200. create table t1 (n int(10) not null primary key, d int(10));
  201. create table t2 (n int(10) not null primary key, d int(10));
  202. insert into t1 values(1,1), (3,3);
  203. insert into t2 values(1,10),(2,20);
  204. UPDATE t2 left outer join t1 on t1.n=t2.n  SET t1.d=t2.d;
  205. select * from t1;
  206. n d
  207. 1 10
  208. 3 3
  209. select * from t2;
  210. n d
  211. 1 10
  212. 2 20
  213. drop table t1,t2;
  214. create table t1 (n int(10), d int(10));
  215. create table t2 (n int(10), d int(10));
  216. insert into t1 values(1,1),(1,2);
  217. insert into t2 values(1,10),(2,20);
  218. UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
  219. select * from t1;
  220. n d
  221. 1 10
  222. 1 10
  223. select * from t2;
  224. n d
  225. 1 30
  226. 2 20
  227. drop table t1,t2;
  228. create table t1 (n int(10), d int(10));
  229. create table t2 (n int(10), d int(10));
  230. insert into t1 values(1,1),(3,2);
  231. insert into t2 values(1,10),(1,20);
  232. UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
  233. select * from t1;
  234. n d
  235. 1 10
  236. 3 2
  237. select * from t2;
  238. n d
  239. 1 30
  240. 1 30
  241. UPDATE t1 a ,t2 b SET a.d=b.d,b.d=30 WHERE a.n=b.n;
  242. select * from t1;
  243. n d
  244. 1 30
  245. 3 2
  246. select * from t2;
  247. n d
  248. 1 30
  249. 1 30
  250. DELETE a, b  FROM t1 a,t2 b where a.n=b.n;
  251. select * from t1;
  252. n d
  253. 3 2
  254. select * from t2;
  255. n d
  256. drop table t1,t2;
  257. CREATE TABLE t1 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
  258. INSERT INTO t1 VALUES (1,'jedan'),(2,'dva'),(3,'tri'),(4,'xxxxxxxxxx'),(5,'a'),(10,''),(11,''),(12,''),(13,'');
  259. CREATE TABLE t2 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
  260. INSERT INTO t2 VALUES (1,'jedan'),(2,'dva'),(3,'tri'),(4,'xxxxxxxxxx'),(5,'a');
  261. CREATE TABLE t3 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
  262. INSERT INTO t3 VALUES (1,'jedan'),(2,'dva');
  263. update t1,t2 set t1.naziv="aaaa" where t1.broj=t2.broj;
  264. update t1,t2,t3 set t1.naziv="bbbb", t2.naziv="aaaa" where t1.broj=t2.broj and t2.broj=t3.broj;
  265. drop table t1,t2,t3;
  266. CREATE TABLE t1 (a int not null primary key, b int not null, key (b));
  267. CREATE TABLE t2 (a int not null primary key, b int not null, key (b));
  268. INSERT INTO t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
  269. INSERT INTO t2 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
  270. update t1,t2 set t1.a=t1.a+100;
  271. select * from t1;
  272. a b
  273. 101 1
  274. 102 2
  275. 103 3
  276. 104 4
  277. 105 5
  278. 106 6
  279. 107 7
  280. 108 8
  281. 109 9
  282. update t1,t2 set t1.a=t1.a+100 where t1.a=101;
  283. select * from t1;
  284. a b
  285. 201 1
  286. 102 2
  287. 103 3
  288. 104 4
  289. 105 5
  290. 106 6
  291. 107 7
  292. 108 8
  293. 109 9
  294. update t1,t2 set t1.b=t1.b+10 where t1.b=2;
  295. select * from t1;
  296. a b
  297. 201 1
  298. 102 12
  299. 103 3
  300. 104 4
  301. 105 5
  302. 106 6
  303. 107 7
  304. 108 8
  305. 109 9
  306. 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;
  307. select * from t1;
  308. a b
  309. 201 1
  310. 102 12
  311. 103 5
  312. 104 6
  313. 105 7
  314. 106 6
  315. 107 7
  316. 108 8
  317. 109 9
  318. select * from t2;
  319. a b
  320. 1 1
  321. 2 2
  322. 3 13
  323. 4 14
  324. 5 15
  325. 6 6
  326. 7 7
  327. 8 8
  328. 9 9
  329. 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);
  330. drop table t1,t2;
  331. 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;
  332. INSERT INTO t3 VALUES ('A',1,1,22,3.2,'R','R','BASE2',0.24,NULL);
  333. create table t1 (A varchar(1));
  334. insert into t1 values  ("A") ,("B"),("C"),("D");
  335. create table t2(Z varchar(15));
  336. 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;
  337. update t2,t3 set Z =param_scenario_costs;
  338. drop table t1,t2,t3;
  339. create table t1 (a int, b int);
  340. create table t2 (a int, b int);
  341. insert into t1 values (1,1),(2,1),(3,1);
  342. insert into t2 values (1,1), (3,1);
  343. 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;
  344. 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;
  345. a b a b
  346. 2 2 NULL NULL
  347. drop table t1,t2;
  348. create table t1 (a int not null auto_increment primary key, b int not null);
  349. insert into t1 (b) values (1),(2),(3),(4);
  350. update t1, t1 as t2 set t1.b=t2.b+1 where t1.a=t2.a;
  351. select * from t1;
  352. a b
  353. 1 2
  354. 2 3
  355. 3 4
  356. 4 5
  357. drop table t1;
  358. create table t1(id1 smallint(5), field char(5));
  359. create table t2(id2 smallint(5), field char(5));
  360. insert into t1 values (1, 'a'), (2, 'aa');
  361. insert into t2 values (1, 'b'), (2, 'bb');
  362. select * from t1;
  363. id1 field
  364. 1 a
  365. 2 aa
  366. select * from t2;
  367. id2 field
  368. 1 b
  369. 2 bb
  370. update t2 inner join t1 on t1.id1=t2.id2
  371. set t2.field=t1.field
  372. where 0=1;
  373. update t2, t1 set t2.field=t1.field
  374. where t1.id1=t2.id2 and 0=1;
  375. delete t1, t2 from t2 inner join t1 on t1.id1=t2.id2
  376. where 0=1;
  377. delete t1, t2 from t2,t1 
  378. where t1.id1=t2.id2 and 0=1;
  379. drop table t1,t2;
  380. create table t1 ( a int not null, b int not null) ;
  381. alter table t1 add index i1(a);
  382. delete from t1 where a > 2000000;
  383. create table t2 like t1;
  384. insert into t2 select * from t1;
  385. select 't2 rows before small delete', count(*) from t1;
  386. t2 rows before small delete count(*)
  387. t2 rows before small delete 2000000
  388. delete t1,t2 from t1,t2 where t1.b=t2.a and t1.a < 2;
  389. select 't2 rows after small delete', count(*) from t2;
  390. t2 rows after small delete count(*)
  391. t2 rows after small delete 1999999
  392. select 't1 rows after small delete', count(*) from t1;
  393. t1 rows after small delete count(*)
  394. t1 rows after small delete 1999999
  395. delete t1,t2 from t1,t2 where t1.b=t2.a and t1.a < 100*1000;
  396. select 't2 rows after big delete', count(*) from t2;
  397. t2 rows after big delete count(*)
  398. t2 rows after big delete 1900001
  399. select 't1 rows after big delete', count(*) from t1;
  400. t1 rows after big delete count(*)
  401. t1 rows after big delete 1900001
  402. drop table t1,t2;
  403. CREATE TABLE t1 ( a int );
  404. CREATE TABLE t2 ( a int );
  405. DELETE t1 FROM t1, t2 AS t3;
  406. DELETE t4 FROM t1, t1 AS t4;
  407. DELETE t3 FROM t1 AS t3, t1 AS t4;
  408. DELETE t1 FROM t1 AS t3, t2 AS t4;
  409. ERROR 42S02: Unknown table 't1' in MULTI DELETE
  410. INSERT INTO t1 values (1),(2);
  411. INSERT INTO t2 values (1),(2);
  412. DELETE t1 FROM t1 AS t2, t2 AS t1 where t1.a=t2.a and t1.a=1;
  413. SELECT * from t1;
  414. a
  415. 1
  416. 2
  417. SELECT * from t2;
  418. a
  419. 2
  420. DELETE t2 FROM t1 AS t2, t2 AS t1 where t1.a=t2.a and t1.a=2;
  421. SELECT * from t1;
  422. a
  423. 1
  424. SELECT * from t2;
  425. a
  426. 2
  427. DROP TABLE t1,t2;
  428. 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`) );
  429. 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`) );
  430. insert into t1 values (0,'A01-Comp',1);
  431. insert into t1 values (0,'B01-Comp',1);
  432. insert into t2 values (0,1,'A Note',1);
  433. update t1 left join t2 on p_id = c2_p_id set c2_note = 'asdf-1' where p_id = 2;
  434. select * from t1;
  435. p_id p_code p_active
  436. 1 A01-Comp 1
  437. 2 B01-Comp 1
  438. select * from t2;
  439. c2_id c2_p_id c2_note c2_active
  440. 1 1 A Note 1
  441. drop table t1, t2;
  442. create database mysqltest;
  443. create table mysqltest.t1 (a int, b int, primary key (a));
  444. create table mysqltest.t2 (a int, b int, primary key (a));
  445. create table mysqltest.t3 (a int, b int, primary key (a));
  446. grant select on mysqltest.* to mysqltest_1@localhost;
  447. grant update on mysqltest.t1 to mysqltest_1@localhost;
  448. update t1, t2 set t1.b=1 where t1.a=t2.a;
  449. update t1, t2 set t1.b=(select t3.b from t3 where t1.a=t3.a) where t1.a=t2.a;
  450. revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
  451. revoke all privileges on mysqltest.* from mysqltest_1@localhost;
  452. delete from mysql.user where user=_binary'mysqltest_1';
  453. drop database mysqltest;
  454. create table t1 (a int, primary key (a));
  455. create table t2 (a int, primary key (a));
  456. create table t3 (a int, primary key (a));
  457. delete t1,t3 from t1,t2 where t1.a=t2.a and t2.a=(select t3.a from t3 where t1.a=t3.a);
  458. ERROR 42S02: Unknown table 't3' in MULTI DELETE
  459. drop table t1, t2, t3;
  460. create table t1 (col1 int);
  461. create table t2 (col1 int);
  462. update t1,t2 set t1.col1 = (select max(col1) from t1) where t1.col1 = t2.col1;
  463. ERROR HY000: You can't specify target table 't1' for update in FROM clause
  464. delete t1 from t1,t2 where t1.col1 < (select max(col1) from t1) and t1.col1 = t2.col1;
  465. ERROR HY000: You can't specify target table 't1' for update in FROM clause
  466. drop table t1,t2;
  467. create table t1 (
  468. aclid bigint not null primary key, 
  469. status tinyint(1) not null 
  470. ) engine = innodb;
  471. create table t2 (
  472. refid bigint not null primary key, 
  473. aclid bigint, index idx_acl(aclid) 
  474. ) engine = innodb;
  475. insert into t2 values(1,null);
  476. delete t2, t1 from t2 left join t1 on (t2.aclid=t1.aclid) where t2.refid='1';
  477. drop table t1, t2;