随笔分类 -  T-SQL

MSSQL,Oracle,MySQL
SQL Server分页的存储过程写法以及性能比较
摘要:------创建数据库data_Test -----create database 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------插入数据------ set identity_insert tb_TestTable on declare @co. 阅读全文

posted @ 2011-08-07 16:33 当时我就吓傻啦 阅读(1074) 评论(0) 推荐(0)

导航