摘要: create table #t(id int,age int) insert into #t(id,age)values(12,122),(8,88),(8,88),(8,88),(8,88)select * from #t -- 1 计算基本组的记录数=5(记录数)/3(指定的ntile组数)=1 阅读全文
posted @ 2020-10-30 15:17 温故纳新 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 解决方法: https://www.jianshu.com/p/004f47f908c5 阅读全文
posted @ 2020-10-30 14:43 温故纳新 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 解决方法: 在Web.config文件中system.web中添加如下配置: <!--.asmx支持post请求或者get请求调用(WebService "因 URL 意外地以 结束,请求格式无法识别" 的解决方法)--> <webServices> <protocols> <add name= " 阅读全文
posted @ 2020-10-30 13:22 温故纳新 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 在Web.config文件中configuration节中添加如下配置: <!--设置默认文档--> <system.webServer> <modules> </modules> <directoryBrowse enabled="true" /> <defaultDocument> <files 阅读全文
posted @ 2020-10-30 13:19 温故纳新 阅读(293) 评论(0) 推荐(0) 编辑