上一页 1 ··· 7 8 9 10 11
摘要: 一定要有jquery132min.js文件引用哦................<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>无标题页</title> <script src="jquery132min.js" type="text/javascript"></script> <script type="text/javascrip 阅读全文
posted @ 2011-09-22 15:26 ajunfly 阅读(2194) 评论(0) 推荐(0) 编辑
摘要: 表t_c 和t_p如上图select * from t_cselect * from t_p查询方法一: select * from (select row_number() over(partition by cid order by cdate desc) as rowid,* from t_p) T where T.rowid<=5 使用sql2005的特性 row_number() over()方法二: declare @temp table(id int,cid int,cdate datetime); declare @id int; declare cur cursor.. 阅读全文
posted @ 2011-09-22 11:05 ajunfly 阅读(145) 评论(0) 推荐(0) 编辑
摘要: select row_number() over(order by yw desc),* from score --有并列时也不重名 1.2.3.4....select rank() over(order by yw desc),* from score--有别列是调名 1.2.2.2.3.4.......... 阅读全文
posted @ 2011-09-21 17:51 ajunfly 阅读(389) 评论(0) 推荐(0) 编辑
摘要: alter procedure Page@TableName varchar(255),--表名 @ID varchar(50), --主表的主键@StrGetFields varchar(1000) = '*', --需要返回的列@PageSize varchar(10),--页尺寸@PageIndex varchar(10),--页码 @StrWhere varchar(1500), --查询条件 @PxName varchar(255), --排序的字段@OrderType varchar(1)='a', --设置排序类型,0:asc,1:desc @Co 阅读全文
posted @ 2011-09-20 17:53 ajunfly 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 贴出效果图片贴出代码 单独的htm页面 在iframe中引用该页面即可<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>无标题页</title> <script src 阅读全文
posted @ 2011-08-25 11:34 ajunfly 阅读(10536) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11