出於某種原因,我想刪除我的表中使用php mysql查詢函數的一些記錄。這是我寫的在mysql中執行多個sql刪除查詢for php
$sql = "delete from progress where first_date='2010-01-01' and last_date='2010-01-31';
delete from progress where first_date='2010-02-01' and last_date='2010-02-28';
delete from progress where first_date='2010-03-01' and last_date='2010-02-31';
delete from progress where first_date='2010-04-01' and last_date='2010-02-30';
delete from progress where first_date='2010-05-01' and last_date='2010-02-31';";
if(!mysql_query($sql)) echo "Error deleting records";
這正是我得到的,「錯誤刪除記錄」。但是,如果使用mysql_error()來使用它,畢竟它沒有用。任何人都知道如何處理這個?感謝之前
把你最後的回聲改爲'echo'刪除記錄時出錯:',mysql_error();',它會吐出發生的確切錯誤。只是說「發生了什麼事」是沒有用的。 – 2010-07-02 14:54:47