Skip to content

Instantly share code, notes, and snippets.

@cereal-s
Created September 25, 2016 13:31
Show Gist options
  • 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('[email protected]'
, INSTR('[email protected]', '@') + 1
, LENGTH('[email protected]') - INSTR('[email protected]', '@'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment