Is there anyway to speed this up by optimizing/condensing the code?
SELECT fullName, email_address, pos_desc, EXT
FROM dbo.BTC_WEB_EMPLOYEE_VIEW
WHERE grp_cde = 'STAFF'
OR grp_cde = 'PROF'
OR grp_cde = 'EXEC'
OR grp_cde = 'ADMIN'
OR grp_cde = 'FAC'
ORDER BY last_name
dbo
and mysql? Looks like sqlserver instead... – Lukas Eder Jun 5 '13 at 12:50