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另一个表中相关的数据。