惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The Cloudflare Blog
U
Unit 42
D
Docker
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Recent Announcements
Recent Announcements
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
V
Visual Studio Blog
I
InfoQ
Google DeepMind News
Google DeepMind News
小众软件
小众软件
L
LangChain Blog
C
Check Point Blog
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
J
Java Code Geeks
罗磊的独立博客

博客园 - prayforsmile

向android虚拟机中push文件提示Read-only file system 存储 =iif(RowNumber("table6_Group3")=1,"Solid","None") - prayforsmile - 博客园 StringSplitToTable SP 拼音 临时表 调用另一个存储过程 返回主键 时间 sp数组处理 同一个表取取相同列内容剔除,附加 1 SP插入 rrr 再见吧,09 ddl - prayforsmile - 博客园 ~~ 关于Case项目 2009悲剧男
时间对应多条记录
prayforsmile · 2010-11-17 · via 博客园 - prayforsmile

时间对应多条记录

SELECT
A.*
,B.TotalWeight
,B.TotalMoney
FROM
(
 SELECT
 CONVERT(varchar(10),A.AccountDt,120) AS AccountDt
 ,A.[NetWeight]
 ,A.[Fee]
 FROM [BtProduceManage].[dbo].[Tst_Material] as A
 inner join Bse_Depart AS B ON B.Dept_Id=A.Dept_Id
 where  DATEDIFF(DAY,A.AccountDt,@strDtSt)<=0
   AND DATEDIFF(DAY,A.AccountDt,@strDtEd)>=0
   AND A.[State]=1
   AND A.[Material_Type]=3
   AND B.Fy_Id=@strFy
 group by
 A.[NetWeight]
 ,A.[Fee]
 ,CONVERT(varchar(10),A.AccountDt,120)
) AS A
INNER JOIN
(
 SELECT
 CONVERT(varchar(10),A.AccountDt,120) AS AccountDt
 ,SUM(A.[NetWeight]) AS TotalWeight
 ,SUM(A.[Fee]*A.[NetWeight]) AS TotalMoney
 FROM [BtProduceManage].[dbo].[Tst_Material] as A
 inner join Bse_Depart AS B ON B.Dept_Id=A.Dept_Id
 where  DATEDIFF(DAY,A.AccountDt,@strDtSt)<=0
   AND DATEDIFF(DAY,A.AccountDt,@strDtEd)>=0
   AND A.[State]=1
   AND A.[Material_Type]=3
   AND B.Fy_Id=@strFy
 group by
 CONVERT(varchar(10),A.AccountDt,120)
) AS B ON B.AccountDt=A.AccountDt
ORDER BY
A.AccountDT ASC

posted on 2010-11-17 14:11  prayforsmile  阅读(192)  评论()    收藏  举报