How to Format Numbers as Currency in SQL Server (T-SQL)

In SQL Server, you can use the T-SQL FORMAT() function to format a number as a currency.

The FORMAT() function allows you to format numbers, dates, currencies, etc. It accepts three arguments; the number, the format, and an optional “culture” argument. This article specifically deals with using the format argument to specify a currency.

Continue reading

SQL Server String Functions (Full List)

Transact-SQL (T-SQL) includes a number of scalar functions that allow us to perform operation on strings when working with SQL Server. These functions accept an input string, and return either a string or a numeric value.

The following is a list of T-SQL string functions available in SQL Server. Click on each function or operator name to see an explanation of the function, its syntax, and examples.

Continue reading

How the TRANSLATE() Function Works in SQL Server (T-SQL)

In SQL Server, the T-SQL TRANSLATE() function returns the string provided as a first argument after some characters specified in the second argument are translated into a destination set of characters specified in the third argument.

It’s similar to the REPLACE() function, but with some important differences.

The TRANSLATE() function requires 3 arguments; the input string, the characters to be replaced, and the characters to replace them.

Continue reading

How the STR() Function Works in SQL Server (T-SQL)

In SQL Server, the T-SQL STR() function returns character data converted from numeric data. The return value has a return type of varchar.

You provide the numeric data as an argument when calling the function. The function then converts it to character data. There are also two optional arguments that you can use to specify the length, and the number of places to the right of the decimal point.

Continue reading

How the SPACE() Function Works in SQL Server (T-SQL)

In SQL Server, you can use the T-SQL SPACE() function to generate a specific number of spaces.

This can be handy for adding spaces within a string, for example, when concatenating two or more strings.

The way it works is, you provide the number of spaces you need, and it will return a string of exactly that number of spaces.

Continue reading

How the QUOTENAME() Function Works in SQL Server (T-SQL)

In SQL Server, the T-SQL QUOTENAME() function returns a Unicode string with the delimiters added to make the input string a valid SQL Server delimited identifier.

It was designed for quoting databases and their objects.

The function accepts two arguments; the input string (required), and a delimiter character (optional).

Continue reading