1. 怎麼用一句sql語句刪除一個資料庫裡面選擇性的刪除表裡面的內容
加where條件x0dx0ax0dx0a刪除表的話:drop table if exists `table`,`table2`,`table3`;x0dx0ax0dx0a刪除表數據的話:x0dx0a1、delete from t1 where 條件x0dx0ax0dx0a2、delete t1 from t1 where 條件x0dx0ax0dx0a3、旁銀delete t1 from t1,t2 where 條件x0dx0ax0dx0a也就是簡單用delete語句無法進行多表刪除數據操作,不過可以建立級聯刪除,x0dx0ax0dx0a在兩個表之間建立級聯刪除關系,笑胡則可以實現刪除一個表的數據時,同時刪除運升宴x0dx0a另一個表中相關的數據。