文章列表
if exists (select name from sysobjects where name='proc_page' and type='p')
drop procedure proc_page
go
create procedure proc_page
@tableName nvarchar(30), --表名
@orderFields nvarchar(30), --排序字段,top max方式只能有一個字段,顛倒方式可以有多個字段,但是不能省略asc
@OrderType int=2, --1,top max 方式,2.顛倒方式
@OrderDe ...
USE [GoodsSystem]
GO
/****** 对象: StoredProcedure [dbo].[proc_table_paging] 脚本日期: 08/30/2010 16:03:48 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
/*
使用 ROW_NUMBER() OVER 分页的例子
WITH tb_temp AS
(SELECT *,ROW_NUMBER() OVER (ORDER BY productid asc) as RowNumber from goods ) ...
G 年代标志符
y 年
M 月
d 日
h 时 在上午或下午 (1~12)
H 时 在一天中 (0~23)
m 分
s 秒
S 毫秒
E 星期
D 一年中的第几天
F 一月中第几个星期几
w 一年中第几个星期
W 一月中第几个星期
a 上午 / 下午 标记符
k 时 在一天中 (1~24)
K 时 在上午或下午 (0~11)
z 时区