[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

Case when statement to me is not as easy as it is in visual basic.

Asked by Mehram in MS SQL Server

Tags: Mateen

SQL Server 2005.

I am too weak in constructing case when stattements.
I would like to post here a case when statement which took me 2 days.
I am afraid this case when statement could be constructed in an easier way
so that by just looking at the statement one could quickly get what is it doing.

The rules are.

1. A person (emp_code) is not allowed overtime hours (ot_hours) more than his
   present days ( presents)  , in that case reset the ot_hours with his presents.

2. A person (emp_code) is not allowed more that 48 ot_hours in any case.
    in that case reset ot_hours with constant value 48.


I am providing (see code snippet) a sample of 639 actual rows where
the column ot_hours1_correctly_calculated represents correctly calculated
new values of ot_hours. After reconstructing the case statements
yours calculated value should match with ot_hours1_correctly_calculated.

I calculated this way.



select
  emp_code = c.emp_code
, presents = c.presents
, ot_hours = case when c.ot_hours > 0 then c.ot_hours else 0 end
, ot_hours1 = isnull(case when
                        (case when ot_hours > presents and ot_hours > 0  then presents else case when ot_hours <= presents and ot_hours > 0 then ot_hours  end end)
                > 48 then 48 else
                        (case when ot_hours > presents and ot_hours > 0  then presents else case when ot_hours <= presents and ot_hours > 0 then ot_hours  end end)                  
              end,0)
from temp_zeeshan48 c


1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
CREATE TABLE [dbo].[temp_zeeshan48](
	[emp_code] [varchar](8) NOT NULL,
	[presents] [int] NULL,
	[ot_hours] [int] NULL,
	[ot_hours1_correctly_calculated] [int] NOT NULL
) ON [PRIMARY]
GO 
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303030303038, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303030303133, 0x00000028, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303030313338, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303030313539, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031313230, 0x00000036, 0x0000001c, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031353537, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032303037, 0x00000028, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032303638, 0x00000036, 0x00000033, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032313631, 0x00000036, 0x00000016, 0x00000016);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032353533, 0x00000032, 0x00000027, 0x00000027);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363035, 0x00000028, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363237, 0x00000030, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373037, 0x00000036, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373236, 0x00000034, 0x00000017, 0x00000017);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373734, 0x00000036, 0x0000006a, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373832, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373836, 0x00000036, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373931, 0x00000034, 0x00000061, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373935, 0x00000036, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373939, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383039, 0x00000036, 0x0000003e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383131, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383136, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383238, 0x00000034, 0x0000006e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383432, 0x00000036, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383930, 0x00000034, 0x00000062, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393137, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393431, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393632, 0x00000034, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393738, 0x00000036, 0x00000035, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313334, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313336, 0x00000034, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313532, 0x00000030, 0x0000001c, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323133, 0x00000036, 0x00000031, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323331, 0x00000036, 0x00000011, 0x00000011);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323339, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323939, 0x00000036, 0x0000003c, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333131, 0x00000032, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333631, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333933, 0x00000036, 0x00000044, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343532, 0x00000036, 0x0000004a, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343835, 0x00000036, 0x0000003f, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353033, 0x00000036, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353336, 0x00000032, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353432, 0x00000034, 0x00000042, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353437, 0x0000002a, 0x00000039, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353636, 0x0000002a, 0x00000016, 0x00000016);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353937, 0x00000030, 0x00000013, 0x00000013);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363330, 0x00000032, 0x0000003c, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363336, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363838, 0x00000030, 0x00000014, 0x00000014);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373735, 0x0000002e, 0x00000032, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373832, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033383732, 0x00000034, 0x00000064, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393739, 0x00000032, 0x0000000c, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303235, 0x00000036, 0x00000036, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303433, 0x00000036, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313639, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313736, 0x00000036, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034323234, 0x00000032, 0x00000029, 0x00000029);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034323239, 0x00000030, 0x0000007d, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034323938, 0x00000030, 0x00000016, 0x00000016);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034333239, 0x00000036, 0x0000001e, 0x0000001e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034333336, 0x00000024, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343038, 0x00000032, 0x00000014, 0x00000014);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343334, 0x00000036, 0x0000000b, 0x0000000b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343832, 0x00000036, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353436, 0x00000032, 0x00000001, 0x00000001);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353833, 0x00000036, 0x0000000b, 0x0000000b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353937, 0x0000002e, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353938, 0x00000034, 0x0000003f, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363131, 0x00000026, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363436, 0x00000036, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363835, 0x00000034, 0x00000001, 0x00000001);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373338, 0x00000032, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373432, 0x00000036, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373436, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383038, 0x0000002c, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383133, 0x0000002c, 0x00000012, 0x00000012);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383636, 0x00000034, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383838, 0x0000000a, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393133, 0x00000034, 0x00000048, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393135, 0x00000030, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393330, 0x00000034, 0x00000018, 0x00000018);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393334, 0x0000002e, 0x00000026, 0x00000026);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393338, 0x00000034, 0x00000038, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393439, 0x00000032, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393833, 0x00000036, 0x00000034, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303333, 0x00000028, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303337, 0x00000036, 0x0000000b, 0x0000000b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303433, 0x0000002e, 0x00000077, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303633, 0x00000034, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303636, 0x00000036, 0x0000000f, 0x0000000f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303933, 0x0000002a, 0x00000047, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313337, 0x00000036, 0x0000002d, 0x0000002d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313638, 0x00000032, 0x0000005a, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313830, 0x00000032, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313935, 0x00000036, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323032, 0x0000002e, 0x0000002e, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323438, 0x00000036, 0x00000025, 0x00000025);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323636, 0x00000026, 0x00000053, 0x00000026);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323732, 0x00000036, 0x00000040, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323839, 0x00000036, 0x00000046, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333332, 0x00000032, 0x0000002f, 0x0000002f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333431, 0x00000036, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333439, 0x00000036, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333534, 0x00000036, 0x00000010, 0x00000010);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333736, 0x00000032, 0x0000000f, 0x0000000f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333738, 0x00000036, 0x00000022, 0x00000022);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333931, 0x0000001e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333937, 0x00000036, 0x0000003b, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333939, 0x00000012, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343033, 0x0000002c, 0x00000016, 0x00000016);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343038, 0x00000028, 0x00000014, 0x00000014);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343235, 0x0000002c, 0x00000027, 0x00000027);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343239, 0x00000034, 0x00000040, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343332, 0x00000034, 0x0000009e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343336, 0x0000000a, 0x00000020, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343337, 0x00000030, 0x00000045, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343431, 0x00000036, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343433, 0x00000032, 0x00000077, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343434, 0x00000036, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343439, 0x00000036, 0x00000047, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343539, 0x0000002c, 0x0000007b, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343630, 0x00000028, 0x0000006d, 0x00000028);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343634, 0x0000000a, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343637, 0x0000002e, 0x0000000f, 0x0000000f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343638, 0x00000034, 0x0000001a, 0x0000001a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343733, 0x00000032, 0x0000001c, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343736, 0x0000002e, 0x0000001f, 0x0000001f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343737, 0x0000002c, 0x00000016, 0x00000016);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353031, 0x00000016, 0x0000000c, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353037, 0x00000018, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353132, 0x0000000a, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036373939, 0x0000000a, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383134, 0x0000000e, 0x0000000c, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383334, 0x0000000a, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383337, 0x0000000e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383434, 0x00000010, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383730, 0x00000000, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383939, 0x00000010, 0x00000043, 0x00000010);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036393035, 0x00000010, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036393037, 0x0000000e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303036, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303131, 0x0000000e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303136, 0x0000002e, 0x00000038, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303234, 0x00000036, 0x0000002a, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303237, 0x00000036, 0x00000040, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303239, 0x00000036, 0x00000037, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303331, 0x00000034, 0x00000035, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303430, 0x00000036, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303532, 0x00000032, 0x0000006a, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303535, 0x0000000a, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303632, 0x00000028, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303634, 0x00000028, 0x0000004a, 0x00000028);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303731, 0x00000012, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303030303430, 0x00000032, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031323231, 0x00000030, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031353138, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032303134, 0x00000034, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032303830, 0x00000034, 0x0000000f, 0x0000000f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032313039, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032313239, 0x00000036, 0x0000009f, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032353539, 0x00000034, 0x0000000d, 0x0000000d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363231, 0x00000036, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363338, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363636, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363937, 0x0000002e, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373036, 0x00000036, 0x0000000f, 0x0000000f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373230, 0x00000036, 0x0000008c, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373632, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373633, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383439, 0x00000036, 0x0000000f, 0x0000000f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383734, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383837, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393232, 0x00000034, 0x0000002c, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393833, 0x00000036, 0x0000000b, 0x0000000b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303036, 0x00000032, 0x00000035, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303231, 0x00000034, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303239, 0x0000001e, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303333, 0x00000034, 0x00000018, 0x00000018);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303536, 0x00000030, 0x00000022, 0x00000022);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303738, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313330, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313434, 0x00000034, 0x0000002d, 0x0000002d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313530, 0x00000036, 0x00000053, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313632, 0x00000034, 0x0000001a, 0x0000001a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313733, 0x00000030, 0x00000035, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313834, 0x0000002e, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313932, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323532, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323831, 0x00000036, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333138, 0x00000036, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333232, 0x00000036, 0x0000002e, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343338, 0x00000032, 0x00000016, 0x00000016);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343839, 0x00000030, 0x00000039, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343934, 0x00000030, 0x00000043, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353936, 0x0000002e, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363332, 0x00000034, 0x00000025, 0x00000025);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363730, 0x00000036, 0x0000001a, 0x0000001a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363738, 0x00000036, 0x00000039, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363934, 0x00000034, 0x00000014, 0x00000014);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373132, 0x00000034, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373231, 0x00000036, 0x0000005b, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373837, 0x00000036, 0x0000001e, 0x0000001e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393338, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393432, 0x00000032, 0x00000066, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303038, 0x0000002c, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303230, 0x00000036, 0x00000028, 0x00000028);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303538, 0x0000002a, 0x0000004a, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303539, 0x00000036, 0x0000005e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303636, 0x00000036, 0x00000049, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313233, 0x00000032, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313436, 0x0000002e, 0x0000002a, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313534, 0x00000036, 0x0000003a, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313630, 0x00000034, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313635, 0x00000030, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313930, 0x00000030, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034323631, 0x00000036, 0x0000001f, 0x0000001f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034323733, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034333036, 0x00000034, 0x0000001e, 0x0000001e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034333334, 0x00000036, 0x00000034, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034333934, 0x00000030, 0x00000029, 0x00000029);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343139, 0x00000036, 0x00000062, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353131, 0x00000036, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353132, 0x00000036, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353235, 0x00000036, 0x0000007e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353431, 0x00000030, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353733, 0x00000030, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353734, 0x00000032, 0x0000003c, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363437, 0x00000036, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363632, 0x0000002e, 0x00000049, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363838, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373031, 0x0000002a, 0x0000001a, 0x0000001a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373130, 0x00000034, 0x0000003c, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373230, 0x00000030, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373231, 0x0000002c, 0x0000004c, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373334, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373638, 0x00000030, 0x00000028, 0x00000028);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373933, 0x00000036, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383030, 0x0000002c, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383634, 0x00000032, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383935, 0x00000032, 0x00000059, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383938, 0x00000032, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393037, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393537, 0x0000002e, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303034, 0x0000002a, 0x00000034, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303136, 0x00000034, 0x0000006d, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303630, 0x00000034, 0x0000003b, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303639, 0x00000034, 0x00000028, 0x00000028);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303734, 0x00000030, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313233, 0x00000034, 0x00000001, 0x00000001);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313239, 0x0000002e, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313339, 0x00000034, 0x0000000b, 0x0000000b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313632, 0x00000034, 0x0000001f, 0x0000001f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313937, 0x00000036, 0x0000000c, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323239, 0x0000002e, 0x00000030, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323434, 0x00000032, 0x00000001, 0x00000001);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323630, 0x00000032, 0x0000001c, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323633, 0x00000036, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323733, 0x00000026, 0x0000002c, 0x00000026);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323832, 0x00000030, 0x00000017, 0x00000017);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323835, 0x00000034, 0x00000018, 0x00000018);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323838, 0x00000024, 0x00000066, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333031, 0x00000034, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333334, 0x00000036, 0x0000002f, 0x0000002f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333336, 0x00000036, 0x00000095, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333538, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343031, 0x00000036, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343134, 0x00000032, 0x00000022, 0x00000022);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343136, 0x0000002e, 0x00000089, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343137, 0x00000034, 0x00000038, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343233, 0x00000034, 0x00000017, 0x00000017);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343331, 0x00000036, 0x0000000c, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343432, 0x00000030, 0x00000038, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343435, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343530, 0x0000002c, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343531, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343534, 0x0000002a, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343535, 0x00000036, 0x00000013, 0x00000013);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343632, 0x00000018, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343636, 0x0000002a, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343639, 0x00000036, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343734, 0x00000026, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343738, 0x00000028, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343839, 0x0000002a, 0x00000017, 0x00000017);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343930, 0x00000028, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343931, 0x0000002a, 0x00000017, 0x00000017);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343934, 0x0000002a, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343935, 0x00000026, 0x00000003, 0x00000003);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343938, 0x00000014, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353030, 0x0000001e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353036, 0x00000016, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353131, 0x00000008, 0x00000003, 0x00000003);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036373837, 0x0000000a, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383330, 0x00000010, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383731, 0x00000010, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303130, 0x00000036, 0x00000027, 0x00000027);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303137, 0x00000032, 0x0000002b, 0x0000002b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303235, 0x00000036, 0x00000085, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303238, 0x00000036, 0x00000040, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303332, 0x00000036, 0x00000044, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303334, 0x0000002e, 0x0000000d, 0x0000000d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303337, 0x00000032, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303338, 0x00000036, 0x00000032, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303432, 0x00000016, 0x00000027, 0x00000016);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303536, 0x00000032, 0x00000025, 0x00000025);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303539, 0x0000002a, 0x00000048, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303630, 0x0000002a, 0x00000053, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303631, 0x0000002c, 0x00000066, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303636, 0x0000001e, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303638, 0x00000020, 0x0000003f, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303730, 0x00000026, 0x00000038, 0x00000026);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303733, 0x0000000a, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303030313939, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031333338, 0x00000034, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031373732, 0x00000030, 0x00000031, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032303230, 0x00000034, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032313237, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032323038, 0x00000012, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032333235, 0x00000026, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032343432, 0x00000036, 0x00000032, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032353338, 0x00000030, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363032, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363232, 0x00000036, 0x00000094, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363439, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363637, 0x00000036, 0x00000011, 0x00000011);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363638, 0x00000032, 0x00000010, 0x00000010);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363931, 0x00000032, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373038, 0x00000024, 0x00000017, 0x00000017);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373330, 0x00000036, 0x0000000d, 0x0000000d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373337, 0x00000032, 0x0000000c, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373630, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373634, 0x00000036, 0x0000004e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373830, 0x00000036, 0x00000013, 0x00000013);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383630, 0x00000034, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383631, 0x00000036, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383632, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393939, 0x00000036, 0x00000002, 0x00000002);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303237, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303639, 0x00000034, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303939, 0x00000034, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313730, 0x00000036, 0x0000001c, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323337, 0x00000036, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323437, 0x00000036, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323530, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323535, 0x0000002e, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323737, 0x00000034, 0x0000000d, 0x0000000d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333137, 0x00000034, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333336, 0x0000001c, 0x00000027, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333539, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333632, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343337, 0x00000034, 0x0000001e, 0x0000001e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343430, 0x0000002c, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343432, 0x00000030, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343438, 0x00000034, 0x00000033, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343530, 0x00000036, 0x0000002f, 0x0000002f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343838, 0x00000030, 0x0000003d, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353938, 0x00000036, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363237, 0x0000002e, 0x0000001c, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363536, 0x00000034, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033363733, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373232, 0x0000002e, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373338, 0x00000032, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033383433, 0x00000034, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393038, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393434, 0x0000002c, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393733, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393838, 0x00000034, 0x00000035, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303030, 0x00000036, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303434, 0x00000036, 0x00000028, 0x00000028);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303631, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303833, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313731, 0x00000034, 0x0000000b, 0x0000000b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313737, 0x00000036, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034323632, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034323936, 0x00000032, 0x00000023, 0x00000023);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034333536, 0x00000032, 0x0000002e, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343232, 0x00000032, 0x00000014, 0x00000014);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343337, 0x00000034, 0x00000037, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343934, 0x0000002e, 0x00000002, 0x00000002);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353434, 0x00000032, 0x0000002c, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353437, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353731, 0x00000034, 0x0000001f, 0x0000001f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353838, 0x00000036, 0x00000034, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353932, 0x00000032, 0x00000012, 0x00000012);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363030, 0x0000002a, 0x00000078, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363038, 0x00000032, 0x00000026, 0x00000026);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363134, 0x00000036, 0x0000000f, 0x0000000f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363431, 0x00000034, 0x00000018, 0x00000018);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363832, 0x00000036, 0x0000003e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363931, 0x00000036, 0x0000000d, 0x0000000d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373731, 0x00000034, 0x00000010, 0x00000010);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373832, 0x00000032, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373835, 0x00000030, 0x0000002d, 0x0000002d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373939, 0x0000002c, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383033, 0x0000002e, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393035, 0x00000036, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393038, 0x00000032, 0x00000036, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393136, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393139, 0x00000036, 0x0000004d, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393735, 0x00000036, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393736, 0x0000002c, 0x0000002e, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393836, 0x0000002c, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393937, 0x0000002c, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303233, 0x00000036, 0x00000027, 0x00000027);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313231, 0x00000036, 0x0000000c, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313335, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313336, 0x00000026, 0x00000071, 0x00000026);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313639, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313731, 0x00000032, 0x00000030, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313733, 0x00000024, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313833, 0x00000034, 0x00000025, 0x00000025);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313936, 0x00000032, 0x0000002b, 0x0000002b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313938, 0x00000032, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323133, 0x00000032, 0x00000014, 0x00000014);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323237, 0x00000032, 0x00000028, 0x00000028);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323338, 0x00000034, 0x0000003b, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323530, 0x00000034, 0x0000002d, 0x0000002d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323531, 0x00000034, 0x00000016, 0x00000016);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323735, 0x00000032, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323930, 0x0000002e, 0x0000002b, 0x0000002b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333030, 0x00000032, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333032, 0x00000034, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333231, 0x00000032, 0x0000003f, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333337, 0x00000034, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333438, 0x00000036, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333735, 0x0000001e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333832, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333833, 0x00000034, 0x00000035, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343030, 0x00000034, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343230, 0x0000002a, 0x0000001a, 0x0000001a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343232, 0x00000034, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343236, 0x00000030, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343238, 0x00000034, 0x0000002e, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343436, 0x00000034, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343533, 0x00000036, 0x00000003, 0x00000003);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343538, 0x00000036, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343633, 0x0000002a, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343830, 0x00000032, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343835, 0x00000036, 0x0000002f, 0x0000002f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343836, 0x0000002a, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343837, 0x00000030, 0x0000001e, 0x0000001e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343838, 0x0000002a, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343933, 0x0000002c, 0x0000001f, 0x0000001f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343937, 0x0000001c, 0x0000004e, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343939, 0x00000022, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353034, 0x0000001c, 0x00000002, 0x00000002);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353035, 0x00000018, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353038, 0x00000016, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353039, 0x00000010, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353130, 0x0000000a, 0x00000015, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036303534, 0x00000012, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383035, 0x00000010, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383037, 0x0000001c, 0x00000079, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383438, 0x0000000c, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383537, 0x0000000e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036393032, 0x0000000c, 0x00000060, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303030, 0x00000016, 0x00000011, 0x00000011);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303031, 0x00000030, 0x0000004f, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303033, 0x00000036, 0x0000002d, 0x0000002d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303138, 0x00000036, 0x0000002a, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303139, 0x00000036, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303231, 0x0000002a, 0x0000003a, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303333, 0x00000030, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303335, 0x00000034, 0x00000040, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303336, 0x00000026, 0x00000013, 0x00000013);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303339, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303431, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303433, 0x00000036, 0x0000006e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303434, 0x00000036, 0x00000070, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303030313435, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303030393538, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031313837, 0x00000036, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031333634, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303031393235, 0x00000036, 0x0000000b, 0x0000000b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032303537, 0x00000030, 0x00000013, 0x00000013);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032313233, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032323632, 0x00000032, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032333330, 0x00000036, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363139, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363234, 0x00000032, 0x0000002f, 0x0000002f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363236, 0x00000032, 0x00000026, 0x00000026);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363435, 0x00000030, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363537, 0x00000036, 0x00000014, 0x00000014);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032363838, 0x0000001a, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373237, 0x00000034, 0x0000004a, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032373933, 0x00000030, 0x00000033, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383031, 0x00000036, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383537, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383639, 0x00000036, 0x00000031, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032383736, 0x00000036, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393033, 0x0000002e, 0x00000013, 0x00000013);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393136, 0x00000036, 0x00000001, 0x00000001);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393836, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303032393936, 0x00000034, 0x00000025, 0x00000025);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033303135, 0x00000030, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313732, 0x00000032, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313833, 0x00000030, 0x00000044, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033313933, 0x00000036, 0x00000093, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323032, 0x00000036, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033323236, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333430, 0x00000036, 0x00000020, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033333633, 0x00000032, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343236, 0x00000036, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343436, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343437, 0x00000032, 0x00000022, 0x00000022);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033343836, 0x00000030, 0x00000040, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353130, 0x00000036, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353237, 0x00000034, 0x00000030, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353431, 0x00000034, 0x00000057, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353434, 0x00000034, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353435, 0x00000036, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353535, 0x00000036, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033353935, 0x0000002a, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373236, 0x00000032, 0x00000003, 0x00000003);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033373535, 0x00000034, 0x0000000b, 0x0000000b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033383738, 0x00000030, 0x0000001e, 0x0000001e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393032, 0x00000030, 0x00000025, 0x00000025);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303033393636, 0x00000034, 0x0000001e, 0x0000001e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034303339, 0x00000034, 0x00000002, 0x00000002);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313431, 0x00000034, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313539, 0x00000036, 0x00000003, 0x00000003);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034313730, 0x00000036, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034333331, 0x00000030, 0x00000005, 0x00000005);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343434, 0x00000036, 0x00000019, 0x00000019);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034343939, 0x00000032, 0x00000010, 0x00000010);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034353732, 0x0000002c, 0x00000017, 0x00000017);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034363638, 0x00000034, 0x00000007, 0x00000007);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373038, 0x0000002c, 0x00000011, 0x00000011);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373132, 0x0000002c, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373233, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373434, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034373438, 0x00000036, 0x0000000d, 0x0000000d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383436, 0x00000030, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383535, 0x0000002e, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383536, 0x00000020, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383936, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034383937, 0x00000032, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393036, 0x00000032, 0x00000051, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393130, 0x00000032, 0x0000002d, 0x0000002d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393138, 0x0000002c, 0x00000041, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393233, 0x00000032, 0x00000006, 0x00000006);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393234, 0x00000030, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393235, 0x00000034, 0x00000028, 0x00000028);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393532, 0x00000032, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393730, 0x00000036, 0x0000001a, 0x0000001a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303034393834, 0x00000036, 0x0000002e, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303033, 0x00000030, 0x00000036, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303035, 0x0000002a, 0x00000047, 0x0000002a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303130, 0x00000034, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303335, 0x0000002e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303338, 0x0000002c, 0x0000002c, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303339, 0x00000030, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303430, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303532, 0x0000002e, 0x00000001, 0x00000001);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303737, 0x0000001a, 0x00000003, 0x00000003);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035303931, 0x00000034, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313238, 0x00000034, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313331, 0x00000036, 0x00000018, 0x00000018);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313332, 0x00000034, 0x0000003a, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313434, 0x00000034, 0x00000014, 0x00000014);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035313436, 0x0000002e, 0x00000048, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323031, 0x00000006, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323138, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323238, 0x00000036, 0x00000012, 0x00000012);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323330, 0x00000034, 0x0000004e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323432, 0x00000032, 0x0000002e, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323535, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323634, 0x00000036, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323836, 0x00000030, 0x00000010, 0x00000010);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035323935, 0x00000036, 0x00000029, 0x00000029);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333034, 0x00000034, 0x0000002c, 0x0000002c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333036, 0x00000030, 0x0000001c, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333237, 0x00000034, 0x0000001a, 0x0000001a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333331, 0x00000036, 0x00000093, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333338, 0x0000002c, 0x00000017, 0x00000017);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333639, 0x00000032, 0x0000002b, 0x0000002b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333733, 0x0000002c, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333739, 0x00000032, 0x0000002d, 0x0000002d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333830, 0x00000032, 0x00000035, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035333835, 0x00000034, 0x0000003e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343034, 0x00000030, 0x00000049, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343131, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343135, 0x00000012, 0x0000003e, 0x00000012);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343139, 0x00000036, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343330, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343333, 0x00000034, 0x00000046, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343334, 0x00000032, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343338, 0x00000034, 0x00000009, 0x00000009);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343430, 0x00000036, 0x00000001, 0x00000001);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343438, 0x00000036, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343532, 0x0000000e, 0x0000000e, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343536, 0x00000032, 0x0000002b, 0x0000002b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343537, 0x00000032, 0x00000021, 0x00000021);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343631, 0x0000002e, 0x0000000a, 0x0000000a);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343635, 0x00000028, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343730, 0x00000032, 0x0000001c, 0x0000001c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343731, 0x00000030, 0x0000001f, 0x0000001f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343732, 0x0000002e, 0x0000001b, 0x0000001b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343735, 0x0000002e, 0x0000001f, 0x0000001f);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343739, 0x00000036, 0x0000002b, 0x0000002b);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343831, 0x00000022, 0x0000001d, 0x0000001d);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343832, 0x0000002e, 0x00000048, 0x0000002e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343833, 0x00000032, 0x00000036, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343834, 0x00000036, 0x00000023, 0x00000023);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343932, 0x00000022, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035343936, 0x00000024, 0x00000002, 0x00000002);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303035353032, 0x00000020, 0x0000004b, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383132, 0x0000000c, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383133, 0x0000000c, 0x0000002f, 0x0000000c);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383331, 0x0000000e, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383635, 0x00000008, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036383735, 0x00000008, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036393030, 0x00000010, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036393033, 0x00000010, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303036393034, 0x0000000e, 0x00000042, 0x0000000e);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303132, 0x00000034, 0x00000056, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303133, 0x0000002a, 0x00000024, 0x00000024);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303135, 0x00000036, 0x00000042, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303232, 0x00000036, 0x00000022, 0x00000022);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303236, 0x00000034, 0x0000003c, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303330, 0x00000036, 0x00000029, 0x00000029);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303435, 0x00000036, 0x0000005f, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303436, 0x00000036, 0x00000048, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303437, 0x00000010, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303438, 0x00000036, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303531, 0x00000036, 0x00000061, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303533, 0x00000036, 0x0000003a, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303534, 0x00000030, 0x00000000, 0x00000000);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303633, 0x00000010, 0x00000004, 0x00000004);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303639, 0x00000020, 0x00000043, 0x00000020);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303732, 0x00000010, 0x0000001f, 0x00000010);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303439, 0x00000036, 0x00000039, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303530, 0x00000036, 0x00000026, 0x00000026);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303537, 0x00000032, 0x0000003e, 0x00000030);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303538, 0x00000016, 0x00000015, 0x00000015);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303635, 0x0000001e, 0x00000008, 0x00000008);
insert into dbo.temp_zeeshan48 ([emp_code], [presents], [ot_hours], [ot_hours1_correctly_calculated]) values (0x3137303039303637, 0x00000022, 0x00000008, 0x00000008);
[+][-]11/07/09 04:14 AM, ID: 25765975Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/07/09 05:31 AM, ID: 25766254Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: MS SQL Server
Tags: Mateen
Sign Up Now!
Solution Provided By: Allister_Reid
Participating Experts: 2
Solution Grade: A
 
[+][-]11/08/09 11:21 PM, ID: 25773912Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]11/08/09 11:25 PM, ID: 25773932Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/09/09 08:23 PM, ID: 25782393Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/09/09 08:28 PM, ID: 25782417Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/10/09 08:00 AM, ID: 25786629Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/10/09 09:04 PM, ID: 25792435Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-89 - Hierarchy / EE_QW_3_20080625