Warning: mysql_query(): Unable to save result set in
报这个错误。
sql4 = "select * from one where flag = 1 limit 0,$maxSend for update";
.
.
.
$sqlUpdate1 = "update one set flag = 0 where id in (".$id.")";当有多条语句同时运行时,就报那个错误,
请问一下怎么解决表结构
CREATE TABLE `content` (
  `id` int(4) NOT NULL AUTO_INCREMENT,
  `content` text,
  `flag` int(4) DEFAULT NULL,
  `timestamp` int(4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11990 DEFAULT CHARSET=latin1;