摘要: OK,我们首先创建一数据库:data_Test,并在此数据库中创建一表:tb_TestTablecreate database data_Test --创建数据库data_Test GO use data_Test GO create table tb_TestTable --创建表 ( id int identity(1,1) primary key, userName nvarchar(20) not null, userPWD nvarchar(20) not null, userEmail nvarchar(40) null ) GO然后我们在数据表中插入2000000条数据:--插入 阅读全文
posted @ 2013-08-03 14:26 清枫塞子 阅读(280) 评论(0) 推荐(0) 编辑