select *,
(case locate('@', address) when 0 then null else address) as email,
(case locate('@', address) when 0 then address else null) as street
from table;
You'd probably need to adjust the name of "locate" function - I'm not sure if it is the same in access database.