72
`id` int NOT NULL auto_increment,
73
`kid` int NOT NULL default '0',
72
`id` smallint(5) unsigned NOT NULL auto_increment,
73
`kid` smallint(5) unsigned NOT NULL default '0',
74
74
PRIMARY KEY (`id`),
78
id int NOT NULL auto_increment,
78
id smallint(5) unsigned NOT NULL auto_increment,
79
79
name varchar(50) NOT NULL default '',
80
80
email varchar(50) NOT NULL default '',
82
82
UNIQUE KEY e_n (email,name)
84
EXPLAIN SELECT SQL_CALC_FOUND_ROWS DISTINCT email FROM t2 LEFT JOIN t1 ON kid = t2.id WHERE t1.id IS NULL ORDER BY t2.email LIMIT 10;
84
EXPLAIN SELECT SQL_CALC_FOUND_ROWS DISTINCT email FROM t2 LEFT JOIN t1 ON kid = t2.id WHERE t1.id IS NULL LIMIT 10;
85
85
id select_type table type possible_keys key key_len ref rows Extra
86
1 SIMPLE t2 index NULL PRIMARY 4 NULL 200 Using temporary; Using filesort
87
1 SIMPLE t1 ref kid kid 4 test.t2.id 1 Using where; Using index; Not exists; Distinct
88
SELECT SQL_CALC_FOUND_ROWS DISTINCT email FROM t2 LEFT JOIN t1 ON kid = t2.id WHERE t1.id IS NULL ORDER BY t2.email LIMIT 10;
86
1 SIMPLE t1 system PRIMARY,kid NULL NULL NULL 0 const row not found
87
1 SIMPLE t2 index NULL e_n 104 NULL 10
88
SELECT SQL_CALC_FOUND_ROWS DISTINCT email FROM t2 LEFT JOIN t1 ON kid = t2.id WHERE t1.id IS NULL LIMIT 10;
158
158
drop table t1,t2;
159
CREATE TEMPORARY TABLE `t1` (
160
160
`titre` char(80) NOT NULL default '',
161
`numeropost` int NOT NULL auto_increment,
162
`maxnumrep` int NOT NULL default '0',
161
`numeropost` mediumint(8) unsigned NOT NULL auto_increment,
162
`maxnumrep` int(10) unsigned NOT NULL default '0',
163
163
PRIMARY KEY (`numeropost`),
164
164
KEY `maxnumrep` (`maxnumrep`)
165
165
) ENGINE=MyISAM ROW_FORMAT=FIXED;