June 11, 2012 at 10:56 am
CardNo DateTime GateEntry
00000002012012-06-1108:34:23MainGateEntry-Big
00000002012012-06-1108:38:30FF LAB-8 Entry
00000002012012-06-1119:31:03MainGateExit-Big
00000002022012-06-1108:36:10MainGateEntry-Big
00000002022012-06-1115:43:03PilotPlant-1GF Exit
00000002022012-06-1117:31:00PilotPlant-1GF Entry
00000002022012-06-1117:43:04MainGateExit-Big
00000002072012-06-1116:19:41FF LAB-5 Entry
00000002072012-06-1116:24:48GF Main Door Exit
00000002072012-06-1116:28:58MainGateExit-Big
00000002082012-06-1111:45:31GFDoor -Exit
00000002082012-06-1113:56:37GF Door -Entry
00000002082012-06-1115:08:59MainGateExit-Big
I Want This Employee only .This Employee Does Not entry in MainGateEntry-Big
CardNo Date
00000002072012-06-11
00000002082012-06-11
June 11, 2012 at 11:03 am
sample, consumable data is the key to getting answers here.
if you put your data in a format a volunteer can copy/paste /adapt, you can get instant, tested answers.
i couldn't tell if your data was seperate columns for date and time, or one column .
the right code avoids confusion like that.
With SampleData (CardNo, [Date Time] ,GateEntry)
AS
(
SELECT '0000000201','2012-06-11 08:34:23','MainGateEntry-Big ' UNION ALL
SELECT '0000000201','2012-06-11 08:38:30','FF LAB-8 Entry ' UNION ALL
SELECT '0000000201','2012-06-11 19:31:03','MainGateExit-Big ' UNION ALL
SELECT '0000000202','2012-06-11 08:36:10','MainGateEntry-Big ' UNION ALL
SELECT '0000000202','2012-06-11 15:43:03','PilotPlant-1GF Exit ' UNION ALL
SELECT '0000000202','2012-06-11 17:31:00','PilotPlant-1GF Entry' UNION ALL
SELECT '0000000202','2012-06-11 17:43:04','MainGateExit-Big ' UNION ALL
SELECT '0000000207','2012-06-11 16:19:41','FF LAB-5 Entry ' UNION ALL
SELECT '0000000207','2012-06-11 16:24:48','GF Main Door Exit ' UNION ALL
SELECT '0000000207','2012-06-11 16:28:58','MainGateExit-Big ' UNION ALL
SELECT '0000000208','2012-06-11 11:45:31','GFDoor -Exit ' UNION ALL
SELECT '0000000208','2012-06-11 13:56:37','GF Door -Entry ' UNION ALL
SELECT '0000000208','2012-06-11 15:08:59','MainGateExit-Big'
)
select CardNo,[Date Time]
from SampleData
where CardNo NOT IN(SELECT CardNo FROM SampleData WHERE GateEntry ='MainGateEntry-Big')
GROUP BY
CardNo,[Date Time]
Lowell
June 11, 2012 at 12:10 pm
tamil.selvanmca (6/11/2012)
CardNo DateTime GateEntry00000002012012-06-1108:34:23MainGateEntry-Big
00000002012012-06-1108:38:30FF LAB-8 Entry
00000002012012-06-1119:31:03MainGateExit-Big
00000002022012-06-1108:36:10MainGateEntry-Big
00000002022012-06-1115:43:03PilotPlant-1GF Exit
00000002022012-06-1117:31:00PilotPlant-1GF Entry
00000002022012-06-1117:43:04MainGateExit-Big
00000002072012-06-1116:19:41FF LAB-5 Entry
00000002072012-06-1116:24:48GF Main Door Exit
00000002072012-06-1116:28:58MainGateExit-Big
00000002082012-06-1111:45:31GFDoor -Exit
00000002082012-06-1113:56:37GF Door -Entry
00000002082012-06-1115:08:59MainGateExit-Big
I Want This Employee only .This Employee Does Not entry in MainGateEntry-Big
CardNo Date
00000002072012-06-11
00000002082012-06-11
Huh?
Jared
CE - Microsoft
June 11, 2012 at 12:14 pm
SQLKnowItAll (6/11/2012)
tamil.selvanmca (6/11/2012)
CardNo DateTime GateEntry00000002012012-06-1108:34:23MainGateEntry-Big
00000002012012-06-1108:38:30FF LAB-8 Entry
00000002012012-06-1119:31:03MainGateExit-Big
00000002022012-06-1108:36:10MainGateEntry-Big
00000002022012-06-1115:43:03PilotPlant-1GF Exit
00000002022012-06-1117:31:00PilotPlant-1GF Entry
00000002022012-06-1117:43:04MainGateExit-Big
00000002072012-06-1116:19:41FF LAB-5 Entry
00000002072012-06-1116:24:48GF Main Door Exit
00000002072012-06-1116:28:58MainGateExit-Big
00000002082012-06-1111:45:31GFDoor -Exit
00000002082012-06-1113:56:37GF Door -Entry
00000002082012-06-1115:08:59MainGateExit-Big
I Want This Employee only .This Employee Does Not entry in MainGateEntry-Big
CardNo Date
00000002072012-06-11
00000002082012-06-11
Huh?
Looking for employees who don't have an record for MainGateEntry-Big.
June 11, 2012 at 12:17 pm
Lynn Pettis (6/11/2012)
SQLKnowItAll (6/11/2012)
tamil.selvanmca (6/11/2012)
CardNo DateTime GateEntry00000002012012-06-1108:34:23MainGateEntry-Big
00000002012012-06-1108:38:30FF LAB-8 Entry
00000002012012-06-1119:31:03MainGateExit-Big
00000002022012-06-1108:36:10MainGateEntry-Big
00000002022012-06-1115:43:03PilotPlant-1GF Exit
00000002022012-06-1117:31:00PilotPlant-1GF Entry
00000002022012-06-1117:43:04MainGateExit-Big
00000002072012-06-1116:19:41FF LAB-5 Entry
00000002072012-06-1116:24:48GF Main Door Exit
00000002072012-06-1116:28:58MainGateExit-Big
00000002082012-06-1111:45:31GFDoor -Exit
00000002082012-06-1113:56:37GF Door -Entry
00000002082012-06-1115:08:59MainGateExit-Big
I Want This Employee only .This Employee Does Not entry in MainGateEntry-Big
CardNo Date
00000002072012-06-11
00000002082012-06-11
Huh?
Looking for employees who don't have an record for MainGateEntry-Big.
Aha!
Jared
CE - Microsoft
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply