Home > Backend Development > PHP Tutorial > 数据替何为一直的插入

数据替何为一直的插入

WBOY
Release: 2016-06-13 11:56:29
Original
1004 people have browsed it

数据为何为一直的插入?

本帖最后由 yxqc 于 2014-05-05 14:20:32 编辑 从一个数据库插入到另外一个数据库,表中有80十万条数据,通过。
<br />while($mssql_row = mssql_fetch_array($rs))  { <br />  $MID = $mssql_row[0];<br />  $sql = "insert into Flow01(TDM,) values ('$TDM',)";<br />  mysql_query($sql);   <br />} 
Copy after login


而被插入的表的id已经九十几万了,根本没有停一来的意思,是不是死循环了???
------解决方案--------------------
帮顶,应该不是死循环啊,可以输出获取了多少条记录看看
------解决方案--------------------
单是这段看不出来 全部代码贴出来看看
------解决方案--------------------
没看出是死循环。
------解决方案--------------------
同样没看出哪里死循环了,你可以用
select count(*) from t_TuNao
查看下总共有多少条记录~~

------解决方案--------------------
  $sql = "insert into Flow01(TDM,) values ('$TDM',)";
下面加個log紀錄執行的$sql ,運行後看看紀錄執行的sql是什麼。
file_put_contents('sql.log', $sql."\r\n", FILE_APPEND);
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template