I have the following SQL code:
SELECT eml AS "Email Address"
FROM emailtbl
WHERE DEPT LIKE 'E%'
My issue is that if the department starts in 'F' I must select fax instead of eml. What could I do to select eml if the dept starts with 'E' and select fax if the dept starts in 'F'
Thanks