Hello All,
I need to pull the records where the location starts with 'z' or 'y'. Here is my query
SELECT elgemp.ENR_GRP_NUMBER
FROM elgemp
WHERE (((elgemp.ENR_LOC) Like 'Y*' Or (elgemp.ENR_LOC) Like 'Z*'))
ORDER BY elgemp.ENR_GRP_NUMBER;
Is this right method? I dont get any records when i run this query...am not sure if its coz i dont have any records or the process is wrong. Please confirm
I need to pull the records where the location starts with 'z' or 'y'. Here is my query
SELECT elgemp.ENR_GRP_NUMBER
FROM elgemp
WHERE (((elgemp.ENR_LOC) Like 'Y*' Or (elgemp.ENR_LOC) Like 'Z*'))
ORDER BY elgemp.ENR_GRP_NUMBER;
Is this right method? I dont get any records when i run this query...am not sure if its coz i dont have any records or the process is wrong. Please confirm