摘要:
DELETE删除多表数据,怎样才能同时删除多个关联表的数据呢?这里做了深入的解释: 1 delete from t1 where 条件 2 delete t1 from t1 where 条件 3 delete t1 from t1,t2 where 条件 4 delete t1,t2 from t 阅读全文
摘要:
在一个项目中想实现以上功能,在项目中加入一个 Global.aspx文件即可实现。 public class Global : System.Web.HttpApplication { protected void Application_Start(object sender, EventArgs 阅读全文