i have explain my select sql as follows:
explain select * from a, b where a.reporttime = b.reporttime;½á¹ûÈçÏÂ
table type possible_keys key key_len ref rows extra
b all reporttime null null null 170943
a ref reporttime reporttime 8 b.reporttime 303
when i execute" explain select * from a, b where a.reporttime = b.reporttime" my pc will die.
and actually b table has more data than 303 rows.reporttime has been indexed .who can tell me why?