利用 MS-SQL TEMP 数据库 临时表 做 销售排行 的T-SQL复杂语句 利用 MS-SQL TEMP 数据库 临时表 做 销售排行 的T-SQL复杂语句
Declare @p1BegDate char(10)
Declare @p2EndDate char(10)
Declare @P3OrgCode char(6)select @p1BegDate=:p1BegDate
select @p2EndDate=:p2EndDate
select @P3OrgCode=:p3OrgCode
Declare @i int
Declare @sDate char(10)
Declare @sSQL varchar(8000)
/*创建临时销售表*/
If Exists(Select name from tempdb..sysobjects where name='##TmpSale' and XType='U')
Drop table ##TmpSale
Create Table ##TmpSale
(OrgCode char(10),PluCode char(30),DepCode char(10),VendorCode char(30) NULL,Counts money,Cost money,
NetCost money,Total money,Amount money,NetAmount money,NormalDsc money,VipDsc money,PriceDsc money,
GrossProfit money,NetProfit money,AdjustProfit money,NetAdjustprofit money,AccDate char(10)
)
/*识别出日期的区间的表 例如 20090501 到 200905
利用 MS-SQL TEMP 数据库 临时表 做 销售排行 的T-SQL复杂语句
最新推荐文章于 2023-06-24 17:31:19 发布