博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL 新个税计算
阅读量:4918 次
发布时间:2019-06-11

本文共 977 字,大约阅读时间需要 3 分钟。

/*新个税计算公式<=1500 3% 0>1500 <=4500 10% 105>4500 <=9000 20% 555>9000 <=35000 25% 1005>35000 <=55000 30% 2755>55000 <=80000 35% 5505>80000 <=45% 13505*/if OBJECT_ID('dbo.cal') is not null	drop function dbo.calgocreate function dbo.cal(	@salary money,	@k money) returns varchar(100)as begin		declare @startNum as money = 3500	declare @cha as money	declare @result as money	set @cha = @salary - @k - @startNum;	if @cha <= 0 set @result = 0	else if @cha>0 and @cha<=1500 set @result = @cha *3/100	else if @cha>1500 and @cha<=4500 set @result = @cha *10/100-105	else if @cha>4500 and @cha<=9000 set @result = @cha *20/100-555	else if @cha>9000 and @cha<=35000 set @result = @cha *25/100-1005	else if @cha>35000 and @cha<=55000 set @result = @cha *30/100-2755	else if @cha>55000 and @cha<=80000 set @result = @cha *35/100-5505		else if @cha>80000 set @result = @cha *45/100-13505	return cast(@result as varchar(10))endgo

 

转载于:https://www.cnblogs.com/gdjlc/archive/2012/03/14/2395244.html

你可能感兴趣的文章
Mybatis generator 自动生成代码
查看>>
C#中的一些小知识
查看>>
前端开发面试题总结之——HTML
查看>>
HDOJ---1847 Good Luck in CET-4 Everybody![巴什博弈]
查看>>
CodeForces - 618F Double Knapsack
查看>>
input类型为password默认显示有值
查看>>
计算几何模版
查看>>
jQuery插件学习基础
查看>>
json的命名空间
查看>>
Jquery DOM操作
查看>>
面试题6,单例模式等等。24种设计模式。
查看>>
基于Python项目的Redis缓存消耗内存数据简单分析(附详细操作步骤)
查看>>
当session过期后自动跳转到登陆页而且会跳出iframe框架
查看>>
MongoDB3.X参数文件
查看>>
C语言中文件的读取和写入
查看>>
钽电容和电解电容的区别
查看>>
厌倦了ListBox打印消息,使用RichTextBox试试吧
查看>>
今天的状况
查看>>
django 笔记7 多对多
查看>>
[数据库基础]——图解JOIN
查看>>