Document
摘要: --投资情况统计详情sqlselect BidRecord.*, RegInfo.UserName,UserInfo.phone,BorrowInfo.Title,BorrowInfo.BorrowCode from--(select * from [YYD_Account_MoneyRecord] 阅读全文
posted @ 2016-07-25 15:39 从未被超越 阅读(254) 评论(0) 推荐(0) 编辑
摘要: select COUNT(*) from YYD_Users_RegInfo where regTime between '2016-07-11 00:00:00' and '2016-07-11 23:59:59' union all select COUNT(*) from YYD_Users_ 阅读全文
posted @ 2016-07-25 15:38 从未被超越 阅读(271) 评论(0) 推荐(0) 编辑
摘要: select dtime1,SUM(fkje) as fkje,(select sum(borrow_amount) from yyd_borrow_borrowinfo where (status=10 or status=20) and loandate<=tongjitb.dtime1 --张 阅读全文
posted @ 2016-07-25 15:38 从未被超越 阅读(863) 评论(0) 推荐(0) 编辑
摘要: select --总注册人数(select COUNT(*) from [YYD_Users_RegInfo]) as TotalCount,--pc端注册人数(select COUNT(*) from [YYD_Users_RegInfo] where regPlatform ='pc') as 阅读全文
posted @ 2016-07-25 15:37 从未被超越 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 随心买统计查询 --随心买新增-当日人次select COUNT(*) from(select distinct userID from HUR_Product_Buy where createDate between '2016-07-12 00:00:00' and '2016-07-12 23 阅读全文
posted @ 2016-07-25 15:36 从未被超越 阅读(206) 评论(0) 推荐(0) 编辑
摘要: declare @time datetime set @time='2016-07-01' --最新的电Call记录统计查询--SELECT t.zuoxi1,t.PhoneCount,t.PhoneCountSC,t.zuoxi2,t.RegUserCount,t.zuoxi3,t.Recharg 阅读全文
posted @ 2016-07-25 15:35 从未被超越 阅读(323) 评论(0) 推荐(0) 编辑
摘要: --普通标、定向标、新手标、老互融计划-投资记录表select bid.borrow_id, (select yyb.borrow_valid_time from YYD_Borrow_BorrowInfo as yyb where yyb.ID=bid.borrow_id ) as borrow_ 阅读全文
posted @ 2016-07-25 15:34 从未被超越 阅读(222) 评论(0) 推荐(0) 编辑
摘要: DECLARE @startTime datetimeset @startTime='2016-07-12' SELECT * FROM (--坐席号/电话个数/通话总时长select zuoxi as zuoxi1,COUNT(1) as PhoneCount,SUM(DATEDIFF(ss,jt 阅读全文
posted @ 2016-07-25 15:33 从未被超越 阅读(447) 评论(0) 推荐(0) 编辑
摘要: Union all的用法实例sqlSELECT TOP (100) PERCENT ID, bid_user_id, UserName, amount, createtime, borrowTypeFROM (SELECT bid.ID, bid.bid_user_id, reg.UserName, 阅读全文
posted @ 2016-07-25 15:32 从未被超越 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: Sql ISNULL() 函数 使用指定的替换值替换 NULL。 语法 ISNULL ( check_expression , replacement_value ) 参数 check_expression 将被检查是否为 NULL的表达式。check_expression 可以是任何类型的。 re 阅读全文
posted @ 2016-07-25 13:44 从未被超越 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 由于Access是文件数据库,所以在ASP.NET需要能映射访问到Access文件: 方式一:appSettings中设置连接字符串 web.config的配置 <appSettings> <add key="provider" value="Provider=Microsoft.Jet.OLEDB 阅读全文
posted @ 2016-07-25 10:48 从未被超越 阅读(725) 评论(0) 推荐(0) 编辑