Skip to content

Instantly share code, notes, and snippets.

@cereal-s
Created September 25, 2016 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cereal-s/195be31f7a7dc25b9429a01995a1dae0 to your computer and use it in GitHub Desktop.
Save cereal-s/195be31f7a7dc25b9429a01995a1dae0 to your computer and use it in GitHub Desktop.
SQLite strstr()
-- return the domain name
SELECT SUBSTR('my@email.tld'
, INSTR('my@email.tld', '@') + 1
, LENGTH('my@email.tld') - INSTR('my@email.tld', '@'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment