gpt4 book ai didi

Mysql 查询执行时间太长。为什么?

转载 作者:行者123 更新时间:2023-11-29 09:32:06 25 4
gpt4 key购买 nike

有没有办法让我的查询更快?或者还有其他方法可以进行此类查询吗?我的表格内有 12k 行。

SELECT * from tbl_attendance_master tbl1 , tbl_attendance_master tbl2 
where tbl1.id > tbl2.id and
tbl1.employees_id = tbl2.employees_id and
tbl1.in_time = tbl2.in_time AND
tbl1.out_time = tbl2.out_time

Query Execute time

最佳答案

尝试添加索引

ALTER TABLE `tbl_attendance_master`
ADD INDEX `employees_id_in_time_out_time` (`employees_id`, `in_time`, `out_time`),

希望这能有所帮助!

关于Mysql 查询执行时间太长。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58479016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com