摘要:错误实例完整错误原因中多了一个逗号执行结构有大小限制,会根据大小进行截取参考手册
sql错误实例
$sql_id = "select group_concat(`table_a_id`) from `table_b`"; $id_str = $db->execute($sql_id); $sql = "select * from `table_a` where `id` in ( {$id_str} ) and `is_effect` = 1`"; $res = $db->execute($sql); /* error:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ") and `is_effect` = 1" */ // 完整sql: select * from `table_a` where `id` in ( 1,2,3,4, ) and `is_effect` = 1`错误原因
sql中多了一个逗号
group_concat 执行结构有大小限制,会根据byte大小进行截取
参考:mysql手册-group_concat
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/30436.html
阅读 1385·2021-10-11 10:59
阅读 3066·2019-08-30 15:54
阅读 2688·2019-08-30 13:19
阅读 2409·2019-08-30 13:02
阅读 2333·2019-08-30 10:57
阅读 3293·2019-08-29 15:40
阅读 900·2019-08-29 15:39
阅读 2223·2019-08-29 12:40