数字转换成英文 金额转成英文大写
Posted Jack
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数字转换成英文 金额转成英文大写相关的知识,希望对你有一定的参考价值。
/****** Object: UserDefinedFunction [dbo].[NumberToStr] Script Date: 03/20/2017 23:38:14 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --创建函数 ALTER FUNCTION [dbo].[NumberToStr] ( @ad_input decimal(38,17) ) RETURNS nvarchar(max) AS BEGIN declare @ltd_Digits table(Number int,[Str] nvarchar(10)) insert into @ltd_Digits select 0,‘zero‘ union all select 1,‘one‘ union all select 2,‘two‘ union all select 3,‘three‘ union all select 4,‘four‘ union all select 5,‘five‘ union all select 6,‘six‘ union all select 7,‘seven‘ union all select 8,‘eight‘ union all select 9,‘nine‘ declare @lbi_Num bigint; declare @li_Trillion int; declare @li_Billion int; declare @li_Million int declare @li_Thousand int declare @li_Hundred int declare @ls_result nvarchar(max) declare @lb_Minus nvarchar(10) set @ls_result=‘‘ if @ad_input<0 begin set @lb_Minus = ‘Minus ‘ set @ad_input = right(convert(nvarchar,@ad_input),len(@ad_input)-1) end select @[email protected]_input select @[email protected]_Num % 1000000000000000/1000000000000,@[email protected]_Num % 1000000000000/1000000000, @[email protected]_Num % 1000000000/1000000,@li_Thousand=(@lbi_Num % 1000000)/1000,@li_Hundred=(@lbi_Num % 1000) if @li_Trillion>0 set @[email protected]_result + dbo.[Fn_Sys_ThreeDigit](@li_Trillion) + ‘trillion ‘ if @li_Billion>0 set @[email protected]_result + dbo.[Fn_Sys_ThreeDigit](@li_Billion) + ‘billion ‘ if @li_Million>0 set @[email protected]_result + dbo.[Fn_Sys_ThreeDigit](@li_Million) + ‘million ‘ if @li_Thousand>0 set @[email protected]_result + dbo.[Fn_Sys_ThreeDigit](@li_Thousand) + ‘thousand ‘ if @li_Hundred>0 set @[email protected]_result + dbo.[Fn_Sys_ThreeDigit](@li_Hundred) if @ls_result=‘‘ set @ls_result=‘zero ‘ if @[email protected]_Num>0.000000000 begin declare @ld_temp decimal(18,17) select @[email protected]_result+‘point ‘,@[email protected][email protected]_Num while @ld_temp>0.0 begin select @[email protected]_result+[Str]+‘ ‘ from @ltd_Digits where cast(@ld_temp*10 as int)=Number set @[email protected]_temp*10-cast(@ld_temp*10 as int) end end return @[email protected]_result + ‘only‘ END GO
/****** Object: UserDefinedFunction [dbo].[Fn_Sys_ThreeDigit] Script Date: 03/20/2017 23:40:16 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER FUNCTION [dbo].[Fn_Sys_ThreeDigit] ( @ai_Num int ) RETURNS varchar(100) WITH EXECUTE AS CALLER AS BEGIN declare @ltd_Item table(Number int,[Str] varchar(10)) insert into @ltd_Item select 0,‘zero‘ union all select 1,‘one‘ union all select 2,‘two‘ union all select 3,‘three‘ union all select 4,‘four‘ union all select 5,‘five‘ union all select 6,‘six‘ union all select 7,‘seven‘ union all select 8,‘eight‘ union all select 9,‘nine‘ union all select 10,‘ten‘ union all select 11,‘eleven‘ union all select 12,‘twelve‘ union all select 13,‘thirteen‘ union all select 14,‘fourteen‘ union all select 15,‘fifteen‘ union all select 16,‘sixteen‘ union all select 17,‘seventeen‘ union all select 18,‘eighteen‘ union all select 19,‘nineteen‘ union all select 20,‘twenty‘ union all select 30,‘thirty‘ union all select 40,‘forty‘ union all select 50,‘fifty‘ union all select 60,‘sixty‘ union all select 70,‘severty‘ union all select 80,‘eighty‘ union all select 90,‘ninety‘ declare @ls_English varchar(100) set @ls_English=‘‘ if @ai_Num>99 begin select @ls_English=[Str]+‘ hundred ‘ from @ltd_Item where @ai_Num/100=Number set @[email protected]_Num % 100 if @ai_Num>0 set @[email protected]_English+‘and ‘ end if @ai_Num<=20 and @ai_Num>0 select @[email protected]_English+[Str]+‘ ‘ from @ltd_Item where @ai_Num=Number if @ai_Num>20 begin select @[email protected]_English+[Str]+‘ ‘ from @ltd_Item where @ai_Num/10*10=Number set @[email protected]_Num % 10 if @ai_Num>0 select @[email protected]_English+[Str]+‘ ‘ from @ltd_Item where @ai_Num=Number end RETURN @ls_English END GO
以上是关于数字转换成英文 金额转成英文大写的主要内容,如果未能解决你的问题,请参考以下文章