mysql临时表代替in的写法
mysql临时表代替in的写法
$sql = "create temporary table tmp(id int(4) primary key)"; $this->commonexecute($sql); $sql = "insert into tmp values (23), (433)"; $this->commonexecute($sql); $sql='select aa_copy_copy.name from aa_copy_copy,tmp where aa_copy_copy.id=tmp.id'; $info=$this->commongetinfo($sql);
如果遇到什么不懂的地方直接关注公众号留言(本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须在文章页面给出原文连接,否则保留追究法律责任的权利。)
作者:newmiracle
出处:https://www.cnblogs.com/newmiracle/