Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
SQL

SQL String Functions

Transform text with CONCAT, SUBSTRING, LENGTH, REPLACE, TRIM, and more.

SQL String Functions — a practical guide to SQL string functions with clear examples you can reuse in real projects.

SQL Tutorial Series (41/100). Prefer one article? Read the complete SQL tutorial.

Short description

Function names vary slightly by DBMS — check your dialect.

Strings (MySQL-style)

SELECT CONCAT(first_name, ' ', last_name) AS full_name,
       LOWER(email) AS email_norm
FROM users;

Leave a reply

Your email address will not be published. Required fields are marked *