sql 临时表循环更新月租金
declare @pt_Year int
declare @pt_Month int
declare @pt_Day int
declare @pt_MonthCount int
--得到二个日期的年份
declare @pt_table table(InfoId bigint identity(1,1),ContractCode varchar(100),RendStartDate datetime ,RendEndDate datetime ,TotalAmount money)
insert into @pt_table
select ContractCode,RendStartDate,RendEndDate,TotalAmount from dbo.Asset_Contract
declare @pt_year1 int
declare @pt_year2 int
declare @pt_month1 int
declare @pt_month2 int
declare @pt_day1 int
declare @pt_day2 int
declare @pt_Count bigint
declare @pt_ContractCode varchar(100)
declare @pt_RendStartDate datetime
declare @pt_RendEndDate datetime
declare @pt_TotalAmount money
select @pt_Count=count(InfoId) from @pt_table
while @pt_Count>0
begin
select @pt_ContractCode=ContractCode,
@pt_RendStartDate=RendStartDate,
@pt_TotalAmount=TotalAmount,
@pt_RendEndDate=RendEndDate
from @pt_table where InfoId=@pt_Count
set @pt_year1=subString(CONVERT(varchar(100),@pt_RendStartDate, 23),1,4)
set @pt_year2=subString(CONVERT(varchar(100),@pt_RendEndDate, 23),1,4)
set @pt_month1=subString(CONVERT(varchar(100),@pt_RendStartDate, 23),6,2)
set @pt_month2=subString(CONVERT(varchar(100),@pt_RendEndDate, 23),6,2)
set @pt_day1=subString(CONVERT(varchar(100),@pt_RendStartDate , 23),9,2)
set @pt_day2=subString(CONVERT(varchar(100),@pt_RendEndDate , 23),9,2)
set @pt_MonthCount=(@pt_year2-@pt_year1)*12+(@pt_month2-@pt_month1)
set @pt_Day=@pt_day2-@pt_day1
if(@pt_Day>0)
begin
set @pt_MonthCount=@pt_MonthCount+1
end
if(@pt_Day<0)
begin
set @pt_MonthCount=@pt_MonthCount-1
end
update Asset_Contract
set YueRental=TotalAmount/@pt_MonthCount
where IsChecked=1
set @pt_Count=@pt_Count-1
end
--if (day > 0) {
-- len += 1;
-- }
-- else if (day < 0)
-- {
-- len -= 1;
-- }
--update Asset_Contract
--set YueRental=TotalAmount/(datediff(month,RendStartDate,RendEndDate))
--where IsChecked=1
--
--
--
--select datediff(month,RendStartDate,RendEndDate) from Asset_Contract where ContractCode='NTJQ201200303'
--
--
--select datediff(month,'2012-01-01','2012-05-01')+1
--
--select datediff(year,'2012-9-1','2013-8-31')
----得到二个日期的月份
--select datediff(month,'2012-9-1','2013-8-31')
--
----得到二个日期的天数
--select datediff(day,'2012-9-1','2013-8-31')
--
--declare @pt_year1 int
--declare @pt_year2 int
--declare @pt_month1 int
--declare @pt_month2 int
--declare @pt_day1 int
--declare @pt_day2 int
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· .NET Core GC压缩(compact_phase)底层原理浅谈
· Winform-耗时操作导致界面渲染滞后
· Phi小模型开发教程:C#使用本地模型Phi视觉模型分析图像,实现图片分类、搜索等功能
· 语音处理 开源项目 EchoSharp