博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单的分页存储过程,Json格式日期转换为一般日期
阅读量:6388 次
发布时间:2019-06-23

本文共 1259 字,大约阅读时间需要 4 分钟。

简单的分页存储过程

1 CREATE PROC Paged 2 @pageIndex INT, 3 @pageCount INT OUTPUT, 4 @pageSize INT  5 AS 6 DECLARE @count INT 7 SELECT @count= COUNT(*) FROM dbo.Student 8 SET @pageCount=CEILING(@count*1.0/@pageSize) 9 SELECT 10 * 11 FROM 12 (SELECT ROW_NUMBER() OVER(ORDER BY dbo.Student.stuId) AS tempId,* FROM dbo.Student) AS stu13 WHERE tempId >=@pageSize*(@pageIndex-1)+1 AND tempId <=@pageIndex*@pageSize

Json日期转换为一般日期:json日期:/Date(1316756746000)/ 转换为2013-09-01格式的

1  //将json格式的时间转换成一般时间 2         function ChangeDateFormat(jsondate) { 3             jsondate = jsondate.replace("/Date(", "").replace(")/", ""); 4             if (jsondate.indexOf("+") > 0) { 5                 jsondate = jsondate.substring(0, jsondate.indexOf("+")); 6             } else if (jsondate.indexOf("-") > 0) { 7                 jsondate = jsondate.substring(0, jsondate.indexOf("-")); 8             } 9             var date = new Date(parseInt(jsondate, 10));10             var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;11             var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();12             return date.getFullYear() + "-" + month + "-" + currentDate;13         }

 今天准备写一个简单的分页,关于数据弄了一上午。把中间用到的两个小知识点记录在此,备忘!

转载地址:http://qsbha.baihongyu.com/

你可能感兴趣的文章
JS部分基础知识点
查看>>
题解——CodeForces 438D The Child and Sequence
查看>>
javascript 原型链
查看>>
ListView长按事件返回值为true和false的选择
查看>>
HDU Problem 1513 Palindrome 【LCS】
查看>>
针对异常的微信支付开发 坚守两大原则(分享)
查看>>
ExtJs4发送同步请求的store
查看>>
恶意邮件假冒系统安全公告发送病毒,通过个人签名数字证书排除不明邮件干扰...
查看>>
linux内核编译
查看>>
实时股票数据接口 ZT
查看>>
Object-C - 类的定义
查看>>
小程序-动态设置顶部导航条
查看>>
Mybatis通过工具类根据用户名查找用户列表
查看>>
c++ inline 的位置不当导致的 无法解析的外部符号
查看>>
HLG 1460 Highway Construction【树的直径】
查看>>
hdu 3397 Sequence operation
查看>>
Marketplace Client安装
查看>>
【python】-- 递归函数、高阶函数、嵌套函数、匿名函数
查看>>
Ubuntu打开终端的方法三种
查看>>
php关闭浏览器不终止运行
查看>>