Mysql查询:FROM `pet_info` LEFT JOIN ON `pet_info`.`id` = `lostpets`.`petid` WHEN `pet_info`.pet_user_id` = 581You have an error in your SQL syntax; check the manual that corresponds
在下面两个查询案例之间,哪一个更快:
update t set v = casewhen id = 1000000 then 100 when id = 10000000 then 500 else我的猜测是,尽管第二种情况进行多个查询,但它仍然更快,因为在第一种情况下,它可以使用索引来查找条目,而在第一种情况下,它正在对表进行全面扫描(但这只是一种猜测,我实际上不知道MySQL如何处理案例控制流