我有以下代码
<?php
$result = mysql_query("SELECT * FROM table1");
$row = mysql_fetch_row($result);
while($row = mysql_fetch_array($result))
{
//Do some process
//Then delete this row
}
我需要删除 while 循环中的每一行。
有可能吗?这张表没有主键