Sql Parayı Rakamı Yazıya Dönüştürme

Faturalarda yazıyla para birimini gösteririz. Sql yazıyla ile rakamı yazıya dönüştürmek için aşağıdaki fonksiyonu kullanabilirsiniz. Gelen 2 parametresi vardır;

  • rakam değeri (84305,5)
  • para birimi (TRY,USD, vs)

para birimine göre seksendortbinüçyüzbeş.TL.beş.Kr. sonucunu bize verecektir.

create or alter function dbo.RakamiYaziyaDonustur2(@num AS numeric(18,2), @CurrencyCode as varchar(10))
-- 2022-10-18
returns varchar(255)
AS
BEGIN
declare @kurus varchar(10)
set @kurus=CASE WHEN @CurrencyCode = 'TRY' THEN '.Kr.'
WHEN @CurrencyCode = 'USD' THEN '.Cents.'
WHEN @CurrencyCode = 'EUR' THEN '.Cents.'
WHEN @CurrencyCode = 'GBP' THEN '.Cents.'
ELSE @CurrencyCode END
set @CurrencyCode=CASE WHEN @CurrencyCode = 'TRY' THEN '.TL.'
WHEN @CurrencyCode = 'USD' THEN '.USD.'
WHEN @CurrencyCode = 'EUR' THEN '.EUR.'
WHEN @CurrencyCode = 'GBP' THEN '.GBP.'
ELSE @CurrencyCode END
declare @isMoney bit
set @isMoney = 1
DECLARE @Split tinyint
DECLARE @iSplit tinyint
DECLARE @sNum varchar(20)
DECLARE @NumSet varchar(3)
DECLARE @Char char(1)
DECLARE @NumText varchar(255)
DECLARE @SetText varchar(100)
DECLARE @HunText varchar(100)
DECLARE @CharText varchar(50)
DECLARE @Match bit
DECLARE @Point tinyint
DECLARE @Cents varchar(2)
DECLARE @CentText varchar(100)
DECLARE @NumStrings TABLE (Num int, NumStr varchar(20))
--devamı resmin içinde

fonksiyonu Serkan Dönmez yazısından alıp kullanım amacımıza göre düzenledim.

Şunlarıda incelemek isteyebilirsin mi?

11 yorum

  1. Artificial intelligence has started creating images, writing texts, and composing music. What will hit on next? Determination robots supersede humans?
    Is this look-alike

    created by false intelligence? Refreshing, isn’t it?

  2. Your absolute mastery with strong practical equipment – you transform into a competitor, a pilot as well as an adventurer!
    Tweak and boost system to suit you – grasp, explore, discover the world in your own way!
    Experience memorable delight and unique thrills – from your accomplishments and outcomes!
    Click here to get awesome model that your friend lacks right now!

  3. Picture coming home to find flood creeping into the rooms, belongings, and family treasures.
    It’s stressful — but you don’t need to handle it by yourself.
    We’re here to protect your family’s home and peace, responding fast and gently to stop the damage before it grows. Our team works with gentleness and protection, helping recover your space and your comfort.
    We help you avoid mildew and hidden damage, protecting the comfort of your home. And with our round-the-clock help, you’re never left alone in the middle of a crisis — we’re here whenever you need us!
    Call – 8338561951 and professionals will help you!

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir