x

SQL – FORMAT()

Prev     Next

SQL FORMAT() function is used to format a field/column value that how it should be displayed in the output. Syntax for SQL FORMAT() function is given below.


SQL Syntax for FORMAT() function:

Syntax for FORMAT() function in SQL SELECT FORMAT(column_name, format) FROM table_name;

Where,

  • Column_name – It is the column name that needs to be formatted. It’s a mandatory field.
  • Start – It specifies the format. It’s a mandatory field.

Please consider the following table with few records as given below.

Table name (for example): student
Column names in this table: Student_ID, Student_name, City and Marks
Available records: 4 rows

sql-table68

Example: how to use SQL FORMAT() function:

SQL query:

SELECT Student_name, Marks, FORMAT(Now(),’DD-MM-YYYY‘) AS Result_date from student;

Description:

Now() function will return the result in the format “7/29/2016 2:35:50 AM”. If we want to change this format as per our need, we can specify how the result should be displayed in any format such as ‘DD-MM-YYYY’ or ‘YY-MM-DD’ or ‘YYYY-DD-MM hh:mm:ss’ etc.

SQL query output:

sql-table84

List of other inbuilt functions in SQL:

Please click on each SQL functions below to know more about them and sample SQL queries with output.


1. Aggregate functions
SUM() SQL SUM() function returns the sum of a column. The column should be numeric.
COUNT() SQL COUNT() function returns/counts the number of rows in a query. But, it will not count any null values/column.
AVG() SQL AVG() function returns the average value of a column. The column should be numeric.
MIN() SQL MIN() function returns the minimum or smallest value of a column. The column should be numeric.
MAX() SQL MAX() function returns the maximum or biggest value of a column. The column should be numeric.
FIRST() SQL FIRST() function returns the first value of the given column.
LAST() SQL LAST() function returns the last value of the given column.
2. Scalar functions
LEN() SQL LEN() function returns the total length of the given column.
MID() SQL MID() function extracts the characters from a text field.
ROUND() SQL ROUND() function is used to round a numeric value to the nearest integer or to the number of decimals specified by the user.
LCASE() SQL LCASE() function converts the given column to lowercase.
UCASE() SQL UCASE() function converts the given column to uppercase.
NOW() SQL NOW() function is used to return system’s current date & time.
FORMAT() SQL FORMAT() function is used to format a field/column value how it should be displayed in the output.
SQRT() SQL SQRT() function is used to find square root value of the given number.
RAND() SQL RAND() function is used to generate some random numbers.
CONCAT() SQL CONCAT() function is used to concatenate 2 or more strings and forms a single string.
3. Group by function
GROUP BY() GROUP BY() function is used in conjunction with a SELECT statement and aggregate functions (such as SUM(), AVG(), MAX() etc.), to group similar data in result-set by one or more columns.
4. Having function
Having() HAVING() function in SQL acts as a filter which is used to specify conditions on aggregate functions in WHERE clause. The main purpose of HAVING() function is, aggregate functions such as SUM(), COUNT(), AVG(), etc. can’t be used in where clause. So, they are used in where clause with the help of HAVING() function.

Prev     Next



Like it? Please Spread the word!