Mike Levan
SSChampion
Points: 14201
More actions
January 8, 2008 at 10:47 am
#63141
I have table
tblemp(empjob,emprole)
empjob emprole
1 Mngr
2 clerk
How can I find records if there is any records that are not matching like (empjob=1,empname=clerk)
David.Poole
SSC Guru
Points: 76037
January 8, 2008 at 12:42 pm
#765872
SELECT *
FROM tblEmp
WHERE empjob=1
AND emprole <>'clerk'
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply