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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2,t3;
  2. CREATE TABLE t1 (S1 INT);
  3. CREATE TABLE t2 (S1 INT);
  4. INSERT INTO t1 VALUES (1);
  5. INSERT INTO t2 VALUES (2);
  6. SELECT * FROM t1 JOIN t2;
  7. S1 S1
  8. 1 2
  9. SELECT * FROM t1 INNER JOIN t2;
  10. S1 S1
  11. 1 2
  12. SELECT * from t1 JOIN t2 USING (S1);
  13. S1 S1
  14. SELECT * FROM t1 INNER JOIN t2 USING (S1);
  15. S1 S1
  16. SELECT * from t1 CROSS JOIN t2;
  17. S1 S1
  18. 1 2
  19. SELECT * from t1 LEFT JOIN t2 USING(S1);
  20. S1 S1
  21. 1 NULL
  22. SELECT * from t1 LEFT JOIN t2 ON(t2.S1=2);
  23. S1 S1
  24. 1 2
  25. SELECT * from t1 RIGHT JOIN t2 USING(S1);
  26. S1 S1
  27. NULL 2
  28. SELECT * from t1 RIGHT JOIN t2 ON(t1.S1=1);
  29. S1 S1
  30. 1 2
  31. drop table t1,t2;
  32. create table t1 (id int primary key);
  33. create table t2 (id int);
  34. insert into t1 values (75);
  35. insert into t1 values (79);
  36. insert into t1 values (78);
  37. insert into t1 values (77);
  38. replace into t1 values (76);
  39. replace into t1 values (76);
  40. insert into t1 values (104);
  41. insert into t1 values (103);
  42. insert into t1 values (102);
  43. insert into t1 values (101);
  44. insert into t1 values (105);
  45. insert into t1 values (106);
  46. insert into t1 values (107);
  47. insert into t2 values (107),(75),(1000);
  48. select t1.id, t2.id from t1, t2 where t2.id = t1.id;
  49. id id
  50. 107 107
  51. 75 75
  52. select t1.id, count(t2.id) from t1,t2 where t2.id = t1.id group by t1.id;
  53. id count(t2.id)
  54. 75 1
  55. 107 1
  56. select t1.id, count(t2.id) from t1,t2 where t2.id = t1.id group by t2.id;
  57. id count(t2.id)
  58. 75 1
  59. 107 1
  60. select t1.id,t2.id from t2 left join t1 on t1.id>=74 and t1.id<=0 where t2.id=75 and t1.id is null;
  61. id id
  62. NULL 75
  63. explain select t1.id,t2.id from t2 left join t1 on t1.id>=74 and t1.id<=0 where t2.id=75 and t1.id is null;
  64. id select_type table type possible_keys key key_len ref rows Extra
  65. 1 SIMPLE t1 const PRIMARY NULL NULL NULL 1 Impossible ON condition
  66. 1 SIMPLE t2 ALL NULL NULL NULL NULL 3 Using where
  67. explain select t1.id, t2.id from t1, t2 where t2.id = t1.id and t1.id <0 and t1.id > 0;
  68. id select_type table type possible_keys key key_len ref rows Extra
  69. 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
  70. drop table t1,t2;
  71. CREATE TABLE t1 (
  72. id int(11) NOT NULL auto_increment,
  73. token varchar(100) DEFAULT '' NOT NULL,
  74. count int(11) DEFAULT '0' NOT NULL,
  75. qty int(11),
  76. phone char(1) DEFAULT '' NOT NULL,
  77. timestamp datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
  78. PRIMARY KEY (id),
  79. KEY token (token(15)),
  80. KEY timestamp (timestamp),
  81. UNIQUE token_2 (token(75),count,phone)
  82. );
  83. INSERT INTO t1 VALUES (21,'e45703b64de71482360de8fec94c3ade',3,7800,'n','1999-12-23 17:22:21');
  84. INSERT INTO t1 VALUES (22,'e45703b64de71482360de8fec94c3ade',4,5000,'y','1999-12-23 17:22:21');
  85. INSERT INTO t1 VALUES (18,'346d1cb63c89285b2351f0ca4de40eda',3,13200,'b','1999-12-23 11:58:04');
  86. INSERT INTO t1 VALUES (17,'ca6ddeb689e1b48a04146b1b5b6f936a',4,15000,'b','1999-12-23 11:36:53');
  87. INSERT INTO t1 VALUES (16,'ca6ddeb689e1b48a04146b1b5b6f936a',3,13200,'b','1999-12-23 11:36:53');
  88. INSERT INTO t1 VALUES (26,'a71250b7ed780f6ef3185bfffe027983',5,1500,'b','1999-12-27 09:44:24');
  89. INSERT INTO t1 VALUES (24,'4d75906f3c37ecff478a1eb56637aa09',3,5400,'y','1999-12-23 17:29:12');
  90. INSERT INTO t1 VALUES (25,'4d75906f3c37ecff478a1eb56637aa09',4,6500,'y','1999-12-23 17:29:12');
  91. INSERT INTO t1 VALUES (27,'a71250b7ed780f6ef3185bfffe027983',3,6200,'b','1999-12-27 09:44:24');
  92. INSERT INTO t1 VALUES (28,'a71250b7ed780f6ef3185bfffe027983',3,5400,'y','1999-12-27 09:44:36');
  93. INSERT INTO t1 VALUES (29,'a71250b7ed780f6ef3185bfffe027983',4,17700,'b','1999-12-27 09:45:05');
  94. CREATE TABLE t2 (
  95. id int(11) NOT NULL auto_increment,
  96. category int(11) DEFAULT '0' NOT NULL,
  97. county int(11) DEFAULT '0' NOT NULL,
  98. state int(11) DEFAULT '0' NOT NULL,
  99. phones int(11) DEFAULT '0' NOT NULL,
  100. nophones int(11) DEFAULT '0' NOT NULL,
  101. PRIMARY KEY (id),
  102. KEY category (category,county,state)
  103. );
  104. INSERT INTO t2 VALUES (3,2,11,12,5400,7800);
  105. INSERT INTO t2 VALUES (4,2,25,12,6500,11200);
  106. INSERT INTO t2 VALUES (5,1,37,6,10000,12000);
  107. select a.id, b.category as catid, b.state as stateid, b.county as countyid from t1 a, t2 b ignore index (primary) where (a.token ='a71250b7ed780f6ef3185bfffe027983') and (a.count = b.id);
  108. id catid stateid countyid
  109. 27 2 12 11
  110. 28 2 12 11
  111. 29 2 12 25
  112. 26 1 6 37
  113. select a.id, b.category as catid, b.state as stateid, b.county as
  114. countyid from t1 a, t2 b where (a.token =
  115. 'a71250b7ed780f6ef3185bfffe027983') and (a.count = b.id) order by a.id;
  116. id catid stateid countyid
  117. 26 1 6 37
  118. 27 2 12 11
  119. 28 2 12 11
  120. 29 2 12 25
  121. drop table t1, t2;
  122. create table t1 (a int primary key);
  123. insert into t1 values(1),(2);
  124. select t1.a from t1 as t1 left join t1 as t2 using (a) left join t1 as t3 using (a) left join t1 as t4 using (a) left join t1 as t5 using (a) left join t1 as t6 using (a) left join t1 as t7 using (a) left join t1 as t8 using (a) left join t1 as t9 using (a) left join t1 as t10 using (a) left join t1 as t11 using (a) left join t1 as t12 using (a) left join t1 as t13 using (a) left join t1 as t14 using (a) left join t1 as t15 using (a) left join t1 as t16 using (a) left join t1 as t17 using (a) left join t1 as t18 using (a) left join t1 as t19 using (a) left join t1 as t20 using (a) left join t1 as t21 using (a) left join t1 as t22 using (a) left join t1 as t23 using (a) left join t1 as t24 using (a) left join t1 as t25 using (a) left join t1 as t26 using (a) left join t1 as t27 using (a) left join t1 as t28 using (a) left join t1 as t29 using (a) left join t1 as t30 using (a) left join t1 as t31 using (a);
  125. a
  126. 1
  127. 2
  128. select t1.a from t1 as t1 left join t1 as t2 using (a) left join t1 as t3 using (a) left join t1 as t4 using (a) left join t1 as t5 using (a) left join t1 as t6 using (a) left join t1 as t7 using (a) left join t1 as t8 using (a) left join t1 as t9 using (a) left join t1 as t10 using (a) left join t1 as t11 using (a) left join t1 as t12 using (a) left join t1 as t13 using (a) left join t1 as t14 using (a) left join t1 as t15 using (a) left join t1 as t16 using (a) left join t1 as t17 using (a) left join t1 as t18 using (a) left join t1 as t19 using (a) left join t1 as t20 using (a) left join t1 as t21 using (a) left join t1 as t22 using (a) left join t1 as t23 using (a) left join t1 as t24 using (a) left join t1 as t25 using (a) left join t1 as t26 using (a) left join t1 as t27 using (a) left join t1 as t28 using (a) left join t1 as t29 using (a) left join t1 as t30 using (a) left join t1 as t31 using (a) left join t1 as t32 using (a) left join t1 as t33 using (a) left join t1 as t34 using (a) left join t1 as t35 using (a) left join t1 as t36 using (a) left join t1 as t37 using (a) left join t1 as t38 using (a) left join t1 as t39 using (a) left join t1 as t40 using (a) left join t1 as t41 using (a) left join t1 as t42 using (a) left join t1 as t43 using (a) left join t1 as t44 using (a) left join t1 as t45 using (a) left join t1 as t46 using (a) left join t1 as t47 using (a) left join t1 as t48 using (a) left join t1 as t49 using (a) left join t1 as t50 using (a) left join t1 as t51 using (a) left join t1 as t52 using (a) left join t1 as t53 using (a) left join t1 as t54 using (a) left join t1 as t55 using (a) left join t1 as t56 using (a) left join t1 as t57 using (a) left join t1 as t58 using (a) left join t1 as t59 using (a) left join t1 as t60 using (a) left join t1 as t61 using (a) left join t1 as t62 using (a) left join t1 as t63 using (a) left join t1 as t64 using (a) left join t1 as t65 using (a);
  129. ERROR HY000: Too many tables; MySQL can only use XX tables in a join
  130. drop table t1;
  131. CREATE TABLE t1 (
  132. a int(11) NOT NULL,
  133. b int(11) NOT NULL,
  134. PRIMARY KEY  (a,b)
  135. ) ENGINE=MyISAM;
  136. INSERT INTO t1 VALUES (1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(1,7),(2,3);
  137. CREATE TABLE t2 (
  138. a int(11) default NULL
  139. ) ENGINE=MyISAM;
  140. INSERT INTO t2 VALUES (2),(3);
  141. SELECT t1.a,t2.a,b FROM t1,t2 WHERE t1.a=t2.a AND (t1.a=1 OR t1.a=2) AND b>=1 AND b<=3;
  142. a a b
  143. 2 2 3
  144. DROP TABLE t1, t2;
  145. CREATE TABLE t1 (d DATE NOT NULL);
  146. CREATE TABLE t2 (d DATE NOT NULL);
  147. INSERT INTO t1 (d) VALUES ('2001-08-01'),('0000-00-00');
  148. SELECT * FROM t1 LEFT JOIN t2 USING (d) WHERE t2.d IS NULL;
  149. d d
  150. 2001-08-01 NULL
  151. 0000-00-00 NULL
  152. SELECT * from t1 WHERE t1.d IS NULL;
  153. d
  154. 0000-00-00
  155. SELECT * FROM t1 WHERE 1/0 IS NULL;
  156. d
  157. 2001-08-01
  158. 0000-00-00
  159. DROP TABLE t1,t2;
  160. CREATE TABLE t1 (
  161. Document_ID varchar(50) NOT NULL default '',
  162. Contractor_ID varchar(6) NOT NULL default '',
  163. Language_ID char(3) NOT NULL default '',
  164. Expiration_Date datetime default NULL,
  165. Publishing_Date datetime default NULL,
  166. Title text,
  167. Column_ID varchar(50) NOT NULL default '',
  168. PRIMARY KEY  (Language_ID,Document_ID,Contractor_ID)
  169. );
  170. INSERT INTO t1 VALUES ('xep80','1','ger','2001-12-31 20:00:00','2001-11-12 10:58:00','Kartenbestellung - jetzt auch online','anle'),('','999998','',NULL,NULL,NULL,'');
  171. CREATE TABLE t2 (
  172. Contractor_ID char(6) NOT NULL default '',
  173. Language_ID char(3) NOT NULL default '',
  174. Document_ID char(50) NOT NULL default '',
  175. CanRead char(1) default NULL,
  176. Customer_ID int(11) NOT NULL default '0',
  177. PRIMARY KEY  (Contractor_ID,Language_ID,Document_ID,Customer_ID)
  178. );
  179. INSERT INTO t2 VALUES ('5','ger','xep80','1',999999),('1','ger','xep80','1',999999);
  180. CREATE TABLE t3 (
  181. Language_ID char(3) NOT NULL default '',
  182. Column_ID char(50) NOT NULL default '',
  183. Contractor_ID char(6) NOT NULL default '',
  184. CanRead char(1) default NULL,
  185. Active char(1) default NULL,
  186. PRIMARY KEY  (Language_ID,Column_ID,Contractor_ID)
  187. );
  188. INSERT INTO t3 VALUES ('ger','home','1','1','1'),('ger','Test','1','0','0'),('ger','derclu','1','0','0'),('ger','clubne','1','0','0'),('ger','philos','1','0','0'),('ger','clubko','1','0','0'),('ger','clubim','1','1','1'),('ger','progra','1','0','0'),('ger','progvo','1','0','0'),('ger','progsp','1','0','0'),('ger','progau','1','0','0'),('ger','progku','1','0','0'),('ger','progss','1','0','0'),('ger','nachl','1','0','0'),('ger','mitgli','1','0','0'),('ger','mitsu','1','0','0'),('ger','mitbus','1','0','0'),('ger','ergmar','1','1','1'),('ger','home','4','1','1'),('ger','derclu','4','1','1'),('ger','clubne','4','0','0'),('ger','philos','4','1','1'),('ger','clubko','4','1','1'),('ger','clubim','4','1','1'),('ger','progra','4','1','1'),('ger','progvo','4','1','1'),('ger','progsp','4','1','1'),('ger','progau','4','0','0'),('ger','progku','4','1','1'),('ger','progss','4','1','1'),('ger','nachl','4','1','1'),('ger','mitgli','4','0','0'),('ger','mitsu','4','0','0'),('ger','mitbus','4','0','0'),('ger','ergmar','4','1','1'),('ger','progra2','1','0','0'),('ger','archiv','4','1','1'),('ger','anmeld','4','1','1'),('ger','thema','4','1','1'),('ger','edito','4','1','1'),('ger','madis','4','1','1'),('ger','enma','4','1','1'),('ger','madis','1','1','1'),('ger','enma','1','1','1'),('ger','vorsch','4','0','0'),('ger','veranst','4','0','0'),('ger','anle','4','1','1'),('ger','redak','4','1','1'),('ger','nele','4','1','1'),('ger','aukt','4','1','1'),('ger','callcenter','4','1','1'),('ger','anle','1','0','0');
  189. delete from t1 where Contractor_ID='999998';
  190. insert into t1 (Contractor_ID) Values ('999998');
  191. SELECT DISTINCT COUNT(t1.Title) FROM t1,
  192. t2, t3 WHERE 
  193. t1.Document_ID='xep80' AND t1.Contractor_ID='1' AND 
  194. t1.Language_ID='ger' AND '2001-12-21 23:14:24' >= 
  195. Publishing_Date AND '2001-12-21 23:14:24' <= Expiration_Date AND 
  196. t1.Document_ID = t2.Document_ID AND 
  197. t1.Language_ID = t2.Language_ID AND 
  198. t1.Contractor_ID = t2.Contractor_ID AND ( 
  199. t2.Customer_ID = '4'  OR 
  200. t2.Customer_ID = '999999'  OR 
  201. t2.Customer_ID = '1' )AND t2.CanRead 
  202. = '1'  AND t1.Column_ID=t3.Column_ID AND 
  203. t1.Language_ID=t3.Language_ID AND ( 
  204. t3.Contractor_ID = '4'  OR 
  205. t3.Contractor_ID = '999999'  OR 
  206. t3.Contractor_ID = '1') AND 
  207. t3.CanRead='1' AND t3.Active='1';
  208. COUNT(t1.Title)
  209. 1
  210. SELECT DISTINCT COUNT(t1.Title) FROM t1,
  211. t2, t3 WHERE 
  212. t1.Document_ID='xep80' AND t1.Contractor_ID='1' AND 
  213. t1.Language_ID='ger' AND '2001-12-21 23:14:24' >= 
  214. Publishing_Date AND '2001-12-21 23:14:24' <= Expiration_Date AND 
  215. t1.Document_ID = t2.Document_ID AND 
  216. t1.Language_ID = t2.Language_ID AND 
  217. t1.Contractor_ID = t2.Contractor_ID AND ( 
  218. t2.Customer_ID = '4'  OR 
  219. t2.Customer_ID = '999999'  OR 
  220. t2.Customer_ID = '1' )AND t2.CanRead 
  221. = '1'  AND t1.Column_ID=t3.Column_ID AND 
  222. t1.Language_ID=t3.Language_ID AND ( 
  223. t3.Contractor_ID = '4'  OR 
  224. t3.Contractor_ID = '999999'  OR 
  225. t3.Contractor_ID = '1') AND 
  226. t3.CanRead='1' AND t3.Active='1';
  227. COUNT(t1.Title)
  228. 1
  229. drop table t1,t2,t3;
  230. CREATE TABLE t1 (
  231. t1_id int(11) default NULL,
  232. t2_id int(11) default NULL,
  233. type enum('Cost','Percent') default NULL,
  234. cost_unit enum('Cost','Unit') default NULL,
  235. min_value double default NULL,
  236. max_value double default NULL,
  237. t3_id int(11) default NULL,
  238. item_id int(11) default NULL
  239. ) ENGINE=MyISAM;
  240. INSERT INTO t1 VALUES (12,5,'Percent','Cost',-1,0,-1,-1),(14,4,'Percent','Cost',-1,0,-1,-1),(18,5,'Percent','Cost',-1,0,-1,-1),(19,4,'Percent','Cost',-1,0,-1,-1),(20,5,'Percent','Cost',100,-1,22,291),(21,5,'Percent','Cost',100,-1,18,291),(22,1,'Percent','Cost',100,-1,6,291),(23,1,'Percent','Cost',100,-1,21,291),(24,1,'Percent','Cost',100,-1,9,291),(25,1,'Percent','Cost',100,-1,4,291),(26,1,'Percent','Cost',100,-1,20,291),(27,4,'Percent','Cost',100,-1,7,202),(28,1,'Percent','Cost',50,-1,-1,137),(29,2,'Percent','Cost',100,-1,4,354),(30,2,'Percent','Cost',100,-1,9,137),(93,2,'Cost','Cost',-1,10000000,-1,-1);
  241. CREATE TABLE t2 (
  242. id int(10) unsigned NOT NULL auto_increment,
  243. name varchar(255) default NULL,
  244. PRIMARY KEY  (id)
  245. ) ENGINE=MyISAM;
  246. INSERT INTO t2 VALUES (1,'s1'),(2,'s2'),(3,'s3'),(4,'s4'),(5,'s5');
  247. select t1.*, t2.*  from t1, t2 where t2.id=t1.t2_id limit 2;
  248. t1_id t2_id type cost_unit min_value max_value t3_id item_id id name
  249. 22 1 Percent Cost 100 -1 6 291 1 s1
  250. 23 1 Percent Cost 100 -1 21 291 1 s1
  251. drop table t1,t2;
  252. CREATE TABLE t1 (
  253. siteid varchar(25) NOT NULL default '',
  254. emp_id varchar(30) NOT NULL default '',
  255. rate_code varchar(10) default NULL,
  256. UNIQUE KEY site_emp (siteid,emp_id),
  257. KEY siteid (siteid)
  258. ) ENGINE=MyISAM;
  259. INSERT INTO t1 VALUES ('rivercats','psmith','cust'), ('rivercats','KWalker','cust');
  260. CREATE TABLE t2 (
  261. siteid varchar(25) NOT NULL default '',
  262. rate_code varchar(10) NOT NULL default '',
  263. base_rate float NOT NULL default '0',
  264. PRIMARY KEY  (siteid,rate_code),
  265. FULLTEXT KEY rate_code (rate_code)
  266. ) ENGINE=MyISAM;
  267. INSERT INTO t2 VALUES ('rivercats','cust',20);
  268. SELECT emp.rate_code, lr.base_rate FROM t1 AS emp LEFT JOIN t2 AS lr USING (siteid, rate_code) WHERE emp.emp_id = 'psmith' AND lr.siteid = 'rivercats';
  269. rate_code base_rate
  270. cust 20
  271. SELECT emp.rate_code, lr.base_rate FROM t1 AS emp LEFT JOIN t2 AS lr USING (siteid, rate_code) WHERE lr.siteid = 'rivercats' AND emp.emp_id = 'psmith';
  272. rate_code base_rate
  273. cust 20
  274. drop table t1,t2;
  275. CREATE TABLE t1 (ID INTEGER NOT NULL PRIMARY KEY, Value1 VARCHAR(255));
  276. CREATE TABLE t2 (ID INTEGER NOT NULL PRIMARY KEY, Value2 VARCHAR(255));
  277. INSERT INTO t1 VALUES (1, 'A');
  278. INSERT INTO t2 VALUES (1, 'B');
  279. SELECT * FROM t1 NATURAL JOIN t2 WHERE 1 AND (Value1 = 'A' AND Value2 <> 'B');
  280. ID Value1 Value2
  281. SELECT * FROM t1 NATURAL JOIN t2 WHERE 1 AND Value1 = 'A' AND Value2 <> 'B';
  282. ID Value1 Value2
  283. SELECT * FROM t1 NATURAL JOIN t2 WHERE (Value1 = 'A' AND Value2 <> 'B') AND 1;
  284. ID Value1 Value2
  285. drop table t1,t2;
  286. CREATE TABLE t1 (a int);
  287. CREATE TABLE t2 (b int);
  288. CREATE TABLE t3 (c int);
  289. SELECT * FROM t1 NATURAL JOIN t2 NATURAL JOIN t3;
  290. a b c
  291. DROP TABLE t1, t2, t3;
  292. create table t1 (i int);
  293. create table t2 (i int);
  294. create table t3 (i int);
  295. insert into t1 values(1),(2);
  296. insert into t2 values(2),(3);
  297. insert into t3 values (2),(4);
  298. select * from t1 natural left join t2;
  299. i i
  300. 1 NULL
  301. 2 2
  302. select * from t1 left join t2 on (t1.i=t2.i);
  303. i i
  304. 1 NULL
  305. 2 2
  306. select * from t1 natural left join t2 natural left join t3;
  307. i i i
  308. 1 NULL NULL
  309. 2 2 2
  310. select * from t1 left join t2 on (t1.i=t2.i) left join t3 on (t2.i=t3.i);
  311. i i i
  312. 1 NULL NULL
  313. 2 2 2
  314. select * from t3 natural right join t2;
  315. i i
  316. 2 2
  317. NULL 3
  318. select * from t3 right join t2 on (t3.i=t2.i);
  319. i i
  320. 2 2
  321. NULL 3
  322. select * from t3 natural right join t2 natural right join t1;
  323. i i i
  324. NULL NULL 1
  325. 2 2 2
  326. select * from t3 right join t2 on (t3.i=t2.i) right join t1 on (t2.i=t1.i);
  327. i i i
  328. NULL NULL 1
  329. 2 2 2
  330. select * from t1,t2 natural left join t3 order by t1.i,t2.i,t3.i;
  331. i i i
  332. 1 2 2
  333. 1 3 NULL
  334. 2 2 2
  335. 2 3 NULL
  336. select * from t1,t2 left join t3 on (t2.i=t3.i) order by t1.i,t2.i,t3.i;
  337. i i i
  338. 1 2 2
  339. 1 3 NULL
  340. 2 2 2
  341. 2 3 NULL
  342. select t1.i,t2.i,t3.i from t2 natural left join t3,t1 order by t1.i,t2.i,t3.i;
  343. i i i
  344. 1 2 2
  345. 1 3 NULL
  346. 2 2 2
  347. 2 3 NULL
  348. select t1.i,t2.i,t3.i from t2 left join t3 on (t2.i=t3.i),t1 order by t1.i,t2.i,t3.i;
  349. i i i
  350. 1 2 2
  351. 1 3 NULL
  352. 2 2 2
  353. 2 3 NULL
  354. select * from t1,t2 natural right join t3 order by t1.i,t2.i,t3.i;
  355. i i i
  356. 1 NULL 4
  357. 1 2 2
  358. 2 NULL 4
  359. 2 2 2
  360. select * from t1,t2 right join t3 on (t2.i=t3.i) order by t1.i,t2.i,t3.i;
  361. i i i
  362. 1 NULL 4
  363. 1 2 2
  364. 2 NULL 4
  365. 2 2 2
  366. select t1.i,t2.i,t3.i from t2 natural right join t3,t1 order by t1.i,t2.i,t3.i;
  367. i i i
  368. 1 NULL 4
  369. 1 2 2
  370. 2 NULL 4
  371. 2 2 2
  372. select t1.i,t2.i,t3.i from t2 right join t3 on (t2.i=t3.i),t1 order by t1.i,t2.i,t3.i;
  373. i i i
  374. 1 NULL 4
  375. 1 2 2
  376. 2 NULL 4
  377. 2 2 2
  378. drop table t1,t2,t3;