摘要: //简单思路 select* from ( select *, row_number() over (order by ClientID desc) rowno from FMCORPORATION ) Ftable where Ftable.rowno > (pageindex-1)*pagein 阅读全文
posted @ 2019-05-06 15:22 3939! 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 1. 获取当前日期 select GETDATE() 格式化: select CONVERT(varchar,GETDATE(),120) --2017-05-12 16:33:10 2. 获取当前年 --2017 select DATENAME(YYYY,GETDATE()) --2017 sel 阅读全文
posted @ 2018-06-01 10:45 3939! 阅读(1225) 评论(0) 推荐(0) 编辑
摘要: 来源于:https://blog.csdn.net/cw19901024/article/details/73526402 阅读全文
posted @ 2018-04-20 11:13 3939! 阅读(91) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/dotnet/framework/wpf/index 阅读全文
posted @ 2018-03-29 11:14 3939! 阅读(88) 评论(0) 推荐(0) 编辑
摘要: http://www.w3school.com.cn/index.html 阅读全文
posted @ 2018-03-27 10:00 3939! 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 一.数据库中的范式: 范式, 英文名称是 Normal Form,它是英国人 E.F.Codd(关系数据库的老祖宗)在上个世纪70年代提出关系数据库模型后总结出来的,范式是关系数据库理论的基础,也是我们在设计数据库结构过程中所要遵循的规则和指导方法,以下就是对这三个范式的基本介绍: 第一范式(1NF 阅读全文
posted @ 2018-03-20 16:46 3939! 阅读(219) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/emrys5/p/expression_trans_model.html 来源于Emrys博主 阅读全文
posted @ 2017-12-25 14:05 3939! 阅读(161) 评论(0) 推荐(0) 编辑
摘要: --申明一个游标DECLARE MyCursor CURSOR FOR select PK_UserExamID,FK_UserID,FK_ExamOrContestID from Score_UserExam where IsComplete=0 AND FK_ExamOrContestID in 阅读全文
posted @ 2017-11-13 16:09 3939! 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 父类: 子类: 子类: 子类: 调用: 阅读全文
posted @ 2017-10-10 16:12 3939! 阅读(615) 评论(0) 推荐(0) 编辑
摘要: 第二种样式: <ul class="pager"> <li><a href="#">Previous</a></li> <li><a href="#">Next</a></li></ul> 第三种样式: <ul class="pager"> <li class="previous"><a href= 阅读全文
posted @ 2017-10-10 10:24 3939! 阅读(3628) 评论(0) 推荐(0) 编辑