摘要:
1、说明:两张关联表,删除主表中已经在副表中没有的信息 delete from table1 where not exists ( select * from table2 where table1.field1=table2.field1 ) 2、说明:日程安排提前五分钟提醒 SQL: selec 阅读全文
摘要:
using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.Web 阅读全文
摘要:
首先,为了建立一个测试环境,我们来往数据库中添加1000万条数据: declare @i int set @i=1 while @i<=250000 begin insert into Tgongwen(fariqi,neibuyonghu,reader,title) values('2004-2- 阅读全文