刪除記錄有兩個表resume_update和wp_rsjp_submissions我如何從兩個或多個表
當我做兩個表我能成功抓取的記錄,但刪除不工作的工會。我有這個疑問
<?php
include('wp-blog-header.php');
if($_POST['id']) {
$id=$_POST['id'];
//echo($id); enter code here
//$sql = "delete from user where id='$id'";`enter code here`global $wpdb;
$row = $wpdb->get_row("delete from wp_rsjp_submissions, resume_update using wp_rsjp_submissions, resume_update where id='$id'");
}
?>
您無法以這種方式從多個表中刪除。每個表都需要自己的刪除查詢。 –
你必須級聯刪除表,然後刪除父級自動從子刪除 – harsh4u
@JayBlanchard嗯,他可以,如果他有觸發器設置維護關係數據庫結構沒有不相關的數據。 – Mark