SQL POSITION

Finds WHERE a substring first occurs within a larger string, returning its 1-indexed position — or 0 if it's not found at all.

What & Why

POSITION(substring IN text) returns the 1-indexed position where substring first appears, or 0 if it doesn't appear at all. This is the natural tool whenever a fixed SUBSTRING position won't work because the split point varies row to row — like finding the @ in an email.

See How It Works

BUSINESS QUESTION

Marketing checks where the @ delimiter appears in every lead email.

idcampaign_idemailcreated_atqualified_atconverted_atlead_scoresourcecountry
3011ana@example.com2024-01-21 09:10:00+002024-01-22 11:00:00+002024-02-02 10:00:00+0086google_adsUS
3021ben@example.com2024-01-24 12:40:00+00NULLNULL52google_adsCA
3032chloe@example.com2024-02-16 08:30:00+002024-02-18 14:20:00+00NULL74emailGB
3043dev@example.com2024-03-20 17:15:00+002024-03-21 09:00:00+002024-04-04 16:00:00+0091linkedinUS
EXAMPLE QUERY
SELECT
  id AS lead_id,
  email,
  POSITION('@' IN email) AS at_position
FROM marketing.leads
ORDER BY lead_id;
RESULT — exact output from the displayed Queryflo rows
lead_idemailat_position
301ana@example.com4
302ben@example.com4
303chloe@example.com6
304dev@example.com4

POSITION returns the actual one-based @ location for each lead email.

Now You Try

Practice this concept

Marketing wants the position of the at sign in every lead email.

Available schema
marketing

Prefix tables with marketing.table_name.

lead_idemailat_position
marketing.leads
ColumnType
idinteger
campaign_idinteger
emailtext
created_attimestamp with time zone
qualified_attimestamp with time zone
converted_attimestamp with time zone
lead_scoreinteger
sourcetext
countrytext
archive_statustext
query.sql
Intermediate business practice

Sign up free to try it on a real business scenario