the FORMAT () function is one of the String Function, which is used to format the specified value in the given format.

Sintaxe :

FORMAT(value, format, culture) 

Parâmetro : Este método aceita três parâmetros, como mencionado acima e descritos a seguir :

  • valor : é uma expressão de um tipo de dados com suporte para o formato.
  • formato : é o formato requerido no qual requeremos a saída.
  • cultura: este parâmetro opcional especifica uma cultura.,

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'

Saída:

resultado DateTime

exemplo-4 : Tempo Atual formatado com AM ou PM.

SELECT FORMAT(SYSDATETIME(), N'hh:mm tt');

saída: