🚨 $100K in Sight: Follow Bitcoin’s Final Push Live! TRACK NOW

Code has been added to clipboard!

Main Tips on Using the SQL Length Function

Reading time 1 min
Published Aug 9, 2017
Updated Oct 11, 2019

SQL LEN Function: Main Tips

  • This function brings back the data record value length.
  • Different databases have variously named SQL LEN functions.

Syntax of SQL LEN

Example
SELECT LEN(col_name) FROM tbl_name;
DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
edX
Pros
  • A wide range of learning programs
  • University-level courses
  • Easy to navigate
  • Verified certificates
  • Free learning track available
Main Features
  • University-level courses
  • Suitable for enterprises
  • Verified certificates of completion

Demo Database

In the below table there is a piece of  "Customers" table:

ID Name Contact Address City Postal_Code Country
1 Ben Choplinks Ben Choplink Obeesre Str. 51 Rome 11207 Italy
2 Donald Rich Donald Richario Avda. de la Confgfstitución 4122 Tallin 17021 Estonia
3 Lilly Smilkins Lilly Smilkin Matadsderos 2312 Eguero 14023 Mexico
4 Brandinina Tom Hitchins 110 Hanegover Sq. London WB2 2DP UK
5 Carizmos Christiano Kerrys Berguvsesvägen 9 Luleå S-968 43 Sweden

SQL LEN: Example

In the code example below we pick "Name" and "Address" columns length in the table "Customers":

Example
SELECT CustomersName,LEN(AddressID) as LengthOfAddressID
FROM Customer;

SQLite syntax example

Example
SELECT name, LENGTH(address) as lengthOfAddress
FROM Customers;