x

SQL – LEN()

Prev     Next

SQL LEN() function returns the total length of the given column. Syntax for SQL LEN() function is given below.


SQL Syntax for LEN() function:

Syntax for LEN() function in SQL SELECT LEN(column_name) FROM table_name;

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 LEN() function:

To find the length of the each field of the column ‘Student_name’ from this table, please execute below query.

SQL query:

SELECT LEN(Student_name) from student;

SQL query output:

sql-table70

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!