怎么用一句sql语句删除一个数据库里面选择性的删除表里面的内容?
发布网友
发布时间:2022-04-13 03:27
我来回答
共1个回答
热心网友
时间:2022-04-13 04:56
加where条件
删除表的话:drop table if exists `table`,`table2`,`table3`;
删除表数据的话:
1、delete from t1 where 条件
2、delete t1 from t1 where 条件
3、delete t1 from t1,t2 where 条件
也就是简单用delete语句无法进行多表删除数据操作,不过可以建立级联删除,
在两个表之间建立级联删除关系,则可以实现删除一个表的数据时,同时删除
另一个表中相关的数据。