摘要: 新建StudentScore表:CREATE TABLE [dbo].[StudentScore]( [ID] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY, [StudentCard] [varchar](50) NOT NULL, [Stud... 阅读全文
posted @ 2014-07-15 16:42 我爱大白菜 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 我们平常写分页sql,一般都会分两次查询,一次查询结果,一次查询总行数。下面这条sql做了一些优化,只需要查询一次。代码如下:declare @nGotoPage int,@nPageSize int;set @nGotoPage = 1;set @nPageSize = 100000;with ... 阅读全文
posted @ 2014-04-19 22:02 我爱大白菜 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 让div始终在页面底部,兼容IE6 123 阅读全文
posted @ 2013-11-11 10:11 我爱大白菜 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 微软软件下载http://msdn.itellyou.cn/ 阅读全文
posted @ 2013-11-01 23:07 我爱大白菜 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 新建PHP项目下一步下一步完成 阅读全文
posted @ 2013-10-31 16:14 我爱大白菜 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 搭建PHP环境这里使用ZendStudio+Zendserver+Mysql做为PHP的开发工具,ZendStudio是PHP的代码编辑器,Zendserver用来运行PHP程序,Mysql客户端推荐NavicatforMySQLZend下载地址:http://www.zend.com/en/dow... 阅读全文
posted @ 2013-10-25 17:52 我爱大白菜 阅读(140) 评论(0) 推荐(0) 编辑
摘要: --计算加上N个工作日后的日期的函数(工作日:周一至周五)CREATEFUNCTION GetOverdueTime(@startTimeDATETIME,@workingDaysINT) RETURNSDATETIMEASBEGIN DECLARE@iint--循环次数 DECL... 阅读全文
posted @ 2011-08-16 14:51 我爱大白菜 阅读(462) 评论(0) 推荐(0) 编辑