SELECT count(test.exam.id)
FROM test.exam
left join test.user
on test.exam.sfz=test.user.sfz
where test.user.area=13
查询不出来总数,最后会显示超时
每个表都有20万条左右数据
会查询600秒
SELECT count(test.exam.id)
FROM test.exam
left join test.user
on test.exam.sfz=test.user.sfz
where test.user.area=13
查询不出来总数,最后会显示超时
每个表都有20万条左右数据
会查询600秒
你把test.exam表的sfz字段 以及 test.user表的sfz字段和area字段都建上索引吧。。。你这个是在什么服务器上运行啊。数据有多大,上GB了吗?20w条数据mysql写这种语句应该是毫无压力的。