关键字:SQL 100w数据 1秒钟
关于SQL查询效率,100w数据,查询只要1秒,与您分享:
机器情况:
p4: 2.4
内存: 1 G
os: windows 2003
数据库:
SQL Server 2000
目的: 查询性能测试,比较两种查询的性能
SQL查询效率 step by step
-- setp 1.
-- 建表
create table t_userinfo
(
userid int identity(1,1) primary key nonclustered,
nick varchar(50) not null default '',
classid int not null default 0,
writetime datetime not null default getdate()
)