I have a table with e-mailaddresses, which are all like redir.IDENTIFIER@redirthis.url
How can I run a query which only selects the identifier?
Table emails
+----+--------------------------------+
| id | email |
+----+--------------------------------+
| 1 | [email protected] |
| 2 | [email protected] |
| 3 | [email protected] |
+----+--------------------------------+
Expected/desired result
+----+------------+
| id | email |
+----+------------+
| 1 | A73283 |
| 2 | XAAX83 |
| 3 | A73283F3GH |
+----+------------+