De functie FORMAT() is een van de String functie, die wordt gebruikt om de opgegeven waarde in het opgegeven formaat te formatteren.
syntaxis:
FORMAT(value, format, culture)
Parameter : deze methode accepteert drie parameters zoals hierboven vermeld en hieronder beschreven :
- waarde : het is een expressie van een ondersteund gegevenstype om te formatteren.
- formaat: het is het vereiste formaat waarin we de uitvoer nodig hebben.
- cultuur: deze optionele parameter specificeert een cultuur.,
Returns : It returns a value formatted with the specified format and optional culture.
Example-1 : Format a Number.
SELECT FORMAT(25, 'N')
Output :
25.00
Example-2 : Example of PERCENTAGE format.
SELECT FORMAT(1, 'P', 'en-US')AS , FORMAT(1, 'P', 'en-IN') AS ;
Output :
PERCENTAGE IN US FORMAT | PERCENTAGE IN INDIA FORMAT |
---|---|
100.00 % | 100.00 % |
Example-3 : Example of DATE format.,
DECLARE @d DATETIME = GETDATE(); SELECT FORMAT( @d, 'dd/MM/yyyy', 'en-US' ) AS 'DateTime Result'
Output:
Voorbeeld-4: geformatteerde huidige tijd met AM of PM.
SELECT FORMAT(SYSDATETIME(), N'hh:mm tt');
Output: