-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataScript.sql
More file actions
1037 lines (1036 loc) · 555 KB
/
DataScript.sql
File metadata and controls
1037 lines (1036 loc) · 555 KB
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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
USE [Company]
GO
/****** Object: Table [dbo].[Employee] Script Date: 20-03-2026 20:23:30 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Employee](
[Id] [int] IDENTITY(1,1) NOT NULL,
[FirstName] [nvarchar](max) NOT NULL,
[LastName] [nvarchar](max) NOT NULL,
[Gender] [nvarchar](max) NOT NULL,
[Email] [nvarchar](max) NOT NULL,
[Telephone] [nvarchar](max) NOT NULL,
[DateOfBirth] [datetime2](7) NOT NULL,
[Designation] [nvarchar](max) NOT NULL,
CONSTRAINT [PK_Employee] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Employee] ON
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (1, N'Anna-maria', N'Marmon', N'Female', N'[email protected]', N'979-819-4867', CAST(N'1982-03-26T00:00:00.0000000' AS DateTime2), N'Staff Accountant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (2, N'Eve', N'Croxton', N'Female', N'[email protected]', N'812-474-8005', CAST(N'2021-08-28T00:00:00.0000000' AS DateTime2), N'Software Consultant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (3, N'Zea', N'Rolland', N'Female', N'[email protected]', N'599-292-1288', CAST(N'1986-05-13T00:00:00.0000000' AS DateTime2), N'Engineer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (4, N'Tabor', N'Jewks', N'Male', N'[email protected]', N'907-970-0198', CAST(N'2015-09-22T00:00:00.0000000' AS DateTime2), N'Systems Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (5, N'Maryanne', N'Dani', N'Female', N'[email protected]', N'943-602-2262', CAST(N'2019-01-02T00:00:00.0000000' AS DateTime2), N'Senior Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (6, N'Arny', N'Pailin', N'Male', N'[email protected]', N'769-938-9147', CAST(N'2022-01-27T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (7, N'Timmie', N'Woof', N'Male', N'[email protected]', N'102-900-4803', CAST(N'1989-12-28T00:00:00.0000000' AS DateTime2), N'Nurse Practicioner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (8, N'Stanislaus', N'Bodleigh', N'Male', N'[email protected]', N'171-109-6250', CAST(N'1993-07-19T00:00:00.0000000' AS DateTime2), N'Senior Developer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (9, N'Mollee', N'Patzelt', N'Female', N'[email protected]', N'546-230-2087', CAST(N'2017-09-25T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (10, N'Jazmin', N'Deble', N'Female', N'[email protected]', N'623-696-4293', CAST(N'2007-07-02T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (11, N'Jarib', N'Andreasen', N'Male', N'[email protected]', N'453-888-6817', CAST(N'2024-11-01T00:00:00.0000000' AS DateTime2), N'Accountant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (12, N'Sena', N'Arnley', N'Female', N'[email protected]', N'796-963-2730', CAST(N'1988-08-07T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (13, N'Murry', N'Glasspool', N'Male', N'[email protected]', N'161-639-6195', CAST(N'1990-07-28T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (14, N'Chrissy', N'Shelsher', N'Female', N'[email protected]', N'178-717-8303', CAST(N'2007-07-09T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (15, N'Tamar', N'Kuhnt', N'Female', N'[email protected]', N'198-609-7172', CAST(N'2018-03-15T00:00:00.0000000' AS DateTime2), N'Business Systems Development Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (16, N'Douglass', N'Binion', N'Male', N'[email protected]', N'102-473-5816', CAST(N'2009-09-11T00:00:00.0000000' AS DateTime2), N'Human Resources Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (17, N'Giusto', N'Upjohn', N'Polygender', N'[email protected]', N'548-664-9371', CAST(N'1982-06-14T00:00:00.0000000' AS DateTime2), N'Safety Technician I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (18, N'Letizia', N'Thornbarrow', N'Female', N'[email protected]', N'913-761-2600', CAST(N'1992-12-30T00:00:00.0000000' AS DateTime2), N'Assistant Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (19, N'Homerus', N'Wrightson', N'Male', N'[email protected]', N'946-682-6045', CAST(N'2014-02-06T00:00:00.0000000' AS DateTime2), N'Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (20, N'Matthieu', N'Cella', N'Male', N'[email protected]', N'415-254-2428', CAST(N'1986-07-17T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (21, N'Sharl', N'Filkov', N'Female', N'[email protected]', N'994-421-2287', CAST(N'2024-01-15T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (22, N'Krisha', N'Krelle', N'Male', N'[email protected]', N'146-222-1467', CAST(N'1981-06-04T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (23, N'Lennard', N'Filan', N'Male', N'[email protected]', N'266-456-0142', CAST(N'2000-08-26T00:00:00.0000000' AS DateTime2), N'Chemical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (24, N'Araldo', N'Rontsch', N'Male', N'[email protected]', N'641-624-8543', CAST(N'2005-07-10T00:00:00.0000000' AS DateTime2), N'Account Representative II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (25, N'Gaylord', N'Jurgenson', N'Male', N'[email protected]', N'202-444-0994', CAST(N'2020-10-08T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (26, N'Wren', N'Feehely', N'Female', N'[email protected]', N'588-652-4642', CAST(N'2017-11-24T00:00:00.0000000' AS DateTime2), N'Desktop Support Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (27, N'Nichole', N'Peterffy', N'Female', N'[email protected]', N'748-478-8177', CAST(N'2026-01-31T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (28, N'Cristiano', N'Walsh', N'Male', N'[email protected]', N'786-886-1287', CAST(N'2003-01-24T00:00:00.0000000' AS DateTime2), N'Developer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (29, N'Camella', N'Trimming', N'Female', N'[email protected]', N'689-124-7615', CAST(N'1992-09-04T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (30, N'Dennie', N'Liddiatt', N'Male', N'[email protected]', N'974-475-0194', CAST(N'1999-07-10T00:00:00.0000000' AS DateTime2), N'Accountant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (31, N'Arlene', N'Prendeville', N'Female', N'[email protected]', N'510-542-1311', CAST(N'1991-10-17T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (32, N'Gretchen', N'Sherwyn', N'Female', N'[email protected]', N'889-359-7077', CAST(N'2015-12-22T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (33, N'Merrielle', N'Larter', N'Female', N'[email protected]', N'141-902-2537', CAST(N'2017-02-11T00:00:00.0000000' AS DateTime2), N'Programmer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (34, N'Aluin', N'Paddie', N'Male', N'[email protected]', N'812-917-0626', CAST(N'2010-12-15T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (35, N'Bent', N'Washbrook', N'Genderqueer', N'[email protected]', N'309-986-6793', CAST(N'1994-01-01T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (36, N'Elora', N'Warwicker', N'Female', N'[email protected]', N'861-925-2810', CAST(N'1989-12-27T00:00:00.0000000' AS DateTime2), N'Safety Technician IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (37, N'Humfried', N'Coey', N'Male', N'[email protected]', N'111-289-4434', CAST(N'2011-12-03T00:00:00.0000000' AS DateTime2), N'VP Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (38, N'Devan', N'Ribey', N'Female', N'[email protected]', N'967-430-6859', CAST(N'1981-03-11T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (39, N'Earvin', N'Chicotti', N'Male', N'[email protected]', N'880-168-5785', CAST(N'1987-10-30T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (40, N'Tremayne', N'Rolfe', N'Male', N'[email protected]', N'281-600-4933', CAST(N'2017-09-15T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (41, N'Amata', N'Creamer', N'Female', N'[email protected]', N'224-770-4136', CAST(N'1998-05-06T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (42, N'Parry', N'Korda', N'Male', N'[email protected]', N'450-381-2269', CAST(N'2020-03-21T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (43, N'Charo', N'Stote', N'Female', N'[email protected]', N'953-207-1142', CAST(N'2020-08-17T00:00:00.0000000' AS DateTime2), N'Business Systems Development Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (44, N'Jermayne', N'Gateley', N'Male', N'[email protected]', N'109-866-7029', CAST(N'2011-08-07T00:00:00.0000000' AS DateTime2), N'Database Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (45, N'Madison', N'Coggin', N'Genderqueer', N'[email protected]', N'846-313-7127', CAST(N'2020-03-22T00:00:00.0000000' AS DateTime2), N'Marketing Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (46, N'Parry', N'Bobasch', N'Male', N'[email protected]', N'162-653-3473', CAST(N'2005-08-25T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (47, N'Junette', N'Loudon', N'Female', N'[email protected]', N'434-487-7407', CAST(N'1984-11-13T00:00:00.0000000' AS DateTime2), N'Accounting Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (48, N'Ashley', N'Middle', N'Female', N'[email protected]', N'298-512-5916', CAST(N'2022-02-01T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (49, N'Shell', N'Gollin', N'Male', N'[email protected]', N'474-627-2565', CAST(N'1993-09-26T00:00:00.0000000' AS DateTime2), N'Community Outreach Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (50, N'Tessie', N'Sissons', N'Female', N'[email protected]', N'969-461-8861', CAST(N'2008-06-07T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (51, N'Lynsey', N'Urey', N'Female', N'[email protected]', N'190-904-4235', CAST(N'1992-11-20T00:00:00.0000000' AS DateTime2), N'Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (52, N'Marielle', N'Brann', N'Female', N'[email protected]', N'122-112-6303', CAST(N'1985-04-05T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (53, N'Melva', N'Jeannard', N'Female', N'[email protected]', N'909-577-9855', CAST(N'1982-05-30T00:00:00.0000000' AS DateTime2), N'Administrative Assistant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (54, N'Bondy', N'Dewdeny', N'Male', N'[email protected]', N'295-703-3525', CAST(N'1994-02-23T00:00:00.0000000' AS DateTime2), N'Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (55, N'Timothy', N'Danniell', N'Male', N'[email protected]', N'838-870-3065', CAST(N'1989-09-24T00:00:00.0000000' AS DateTime2), N'Director of Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (56, N'Base', N'Nelm', N'Male', N'[email protected]', N'839-443-4822', CAST(N'2023-05-07T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (57, N'Aviva', N'Elderkin', N'Female', N'[email protected]', N'456-512-2919', CAST(N'1982-10-19T00:00:00.0000000' AS DateTime2), N'Clinical Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (58, N'Noreen', N'Tavernor', N'Genderqueer', N'[email protected]', N'187-123-2893', CAST(N'2001-09-09T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (59, N'Ingemar', N'Judron', N'Male', N'[email protected]', N'672-888-9060', CAST(N'2021-05-25T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (60, N'Isiahi', N'Liddy', N'Male', N'[email protected]', N'732-767-7358', CAST(N'2011-12-03T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (61, N'D''arcy', N'Carde', N'Male', N'[email protected]', N'202-826-4813', CAST(N'2001-04-16T00:00:00.0000000' AS DateTime2), N'Chief Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (62, N'Cornie', N'Agostini', N'Male', N'[email protected]', N'327-160-0637', CAST(N'2002-01-03T00:00:00.0000000' AS DateTime2), N'Systems Administrator IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (63, N'Josefina', N'Edwinson', N'Female', N'[email protected]', N'142-570-2601', CAST(N'1999-04-19T00:00:00.0000000' AS DateTime2), N'Senior Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (64, N'Chrysler', N'Enns', N'Female', N'[email protected]', N'679-618-8198', CAST(N'1997-10-14T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (65, N'Joyous', N'Portam', N'Female', N'[email protected]', N'294-677-0819', CAST(N'1987-09-29T00:00:00.0000000' AS DateTime2), N'Software Consultant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (66, N'Osmond', N'Blacksland', N'Male', N'[email protected]', N'336-766-7960', CAST(N'1985-02-04T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (67, N'Ferdy', N'Chesworth', N'Polygender', N'[email protected]', N'403-976-5751', CAST(N'1987-08-23T00:00:00.0000000' AS DateTime2), N'Database Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (68, N'Marc', N'Poltun', N'Male', N'[email protected]', N'368-181-9804', CAST(N'2015-06-17T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (69, N'Priscella', N'Milmo', N'Female', N'[email protected]', N'137-393-8755', CAST(N'1984-05-25T00:00:00.0000000' AS DateTime2), N'Food Chemist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (70, N'Danita', N'Nortunen', N'Female', N'[email protected]', N'430-463-0337', CAST(N'2009-03-16T00:00:00.0000000' AS DateTime2), N'Business Systems Development Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (71, N'Anatole', N'Stebbings', N'Male', N'[email protected]', N'823-602-1679', CAST(N'2022-07-24T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (72, N'Stefa', N'Renals', N'Non-binary', N'[email protected]', N'269-119-8967', CAST(N'2016-03-08T00:00:00.0000000' AS DateTime2), N'Systems Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (73, N'Caldwell', N'Pennick', N'Male', N'[email protected]', N'816-183-4772', CAST(N'2001-10-21T00:00:00.0000000' AS DateTime2), N'Human Resources Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (74, N'Janela', N'Stoute', N'Female', N'[email protected]', N'858-630-9340', CAST(N'2013-11-05T00:00:00.0000000' AS DateTime2), N'Accounting Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (75, N'Fons', N'Medler', N'Male', N'[email protected]', N'254-739-3155', CAST(N'1988-03-08T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (76, N'Kendra', N'O''Doran', N'Genderqueer', N'[email protected]', N'516-991-8094', CAST(N'2012-01-15T00:00:00.0000000' AS DateTime2), N'Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (77, N'Didi', N'Ianitti', N'Female', N'[email protected]', N'292-699-0105', CAST(N'2005-11-03T00:00:00.0000000' AS DateTime2), N'Staff Scientist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (78, N'Boot', N'Seakin', N'Male', N'[email protected]', N'104-875-2290', CAST(N'2013-03-27T00:00:00.0000000' AS DateTime2), N'Senior Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (79, N'Felicdad', N'Choldcroft', N'Female', N'[email protected]', N'979-395-8062', CAST(N'1997-10-22T00:00:00.0000000' AS DateTime2), N'Accountant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (80, N'Jennilee', N'Rallin', N'Female', N'[email protected]', N'654-616-4743', CAST(N'2016-04-03T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (81, N'Alverta', N'Quincey', N'Female', N'[email protected]', N'798-493-8094', CAST(N'2025-04-19T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (82, N'Ethelin', N'Ferrey', N'Female', N'[email protected]', N'931-640-2837', CAST(N'2008-02-20T00:00:00.0000000' AS DateTime2), N'Dental Hygienist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (83, N'Gerrilee', N'Blackly', N'Female', N'[email protected]', N'118-804-1513', CAST(N'1985-01-05T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (84, N'Mord', N'Busfield', N'Male', N'[email protected]', N'307-561-2324', CAST(N'2007-03-17T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (85, N'Mikel', N'Geddis', N'Male', N'[email protected]', N'530-770-9480', CAST(N'2008-04-16T00:00:00.0000000' AS DateTime2), N'Chemical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (86, N'Candace', N'Madeley', N'Female', N'[email protected]', N'491-502-5852', CAST(N'2024-06-23T00:00:00.0000000' AS DateTime2), N'Compensation Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (87, N'Annnora', N'Peppin', N'Female', N'[email protected]', N'167-725-8449', CAST(N'2002-10-03T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (88, N'Fonzie', N'Bernaldo', N'Male', N'[email protected]', N'939-716-1681', CAST(N'1986-07-07T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (89, N'Skyler', N'Seniour', N'Male', N'[email protected]', N'693-556-2204', CAST(N'1982-11-07T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (90, N'Rog', N'Glazer', N'Male', N'[email protected]', N'449-285-7850', CAST(N'2006-10-04T00:00:00.0000000' AS DateTime2), N'Human Resources Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (91, N'Goddard', N'Tewes', N'Male', N'[email protected]', N'454-903-1981', CAST(N'2023-12-13T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (92, N'Westbrook', N'Eisold', N'Male', N'[email protected]', N'447-210-1253', CAST(N'1997-03-17T00:00:00.0000000' AS DateTime2), N'Clinical Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (93, N'Rubin', N'Enochsson', N'Male', N'[email protected]', N'176-366-1107', CAST(N'1997-10-11T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (94, N'Randa', N'Heathcoat', N'Female', N'[email protected]', N'980-506-9369', CAST(N'1989-05-07T00:00:00.0000000' AS DateTime2), N'Systems Administrator IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (95, N'Tyrone', N'Bockett', N'Male', N'[email protected]', N'136-249-2304', CAST(N'1983-11-12T00:00:00.0000000' AS DateTime2), N'Systems Administrator I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (96, N'Joletta', N'Iacobetto', N'Female', N'[email protected]', N'316-983-1842', CAST(N'1980-06-06T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (97, N'Inger', N'Kitteridge', N'Female', N'[email protected]', N'621-616-9310', CAST(N'2018-10-19T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (98, N'Linn', N'Delue', N'Female', N'[email protected]', N'641-813-2153', CAST(N'1993-02-05T00:00:00.0000000' AS DateTime2), N'Human Resources Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (99, N'Tildy', N'Teers', N'Female', N'[email protected]', N'333-328-7528', CAST(N'2000-11-24T00:00:00.0000000' AS DateTime2), N'Clinical Specialist')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (100, N'Sampson', N'Dureden', N'Genderfluid', N'[email protected]', N'647-819-9274', CAST(N'2010-10-06T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (101, N'Kathryne', N'Dowse', N'Female', N'[email protected]', N'850-866-9786', CAST(N'2002-10-14T00:00:00.0000000' AS DateTime2), N'Programmer Analyst II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (102, N'Katrina', N'Friberg', N'Female', N'[email protected]', N'525-694-6133', CAST(N'2024-05-16T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (103, N'Wilfrid', N'Partleton', N'Male', N'[email protected]', N'278-481-5148', CAST(N'2002-12-08T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (104, N'Cristobal', N'Toft', N'Male', N'[email protected]', N'296-141-4877', CAST(N'1984-07-01T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (105, N'Madelene', N'Castanyer', N'Non-binary', N'[email protected]', N'999-607-7497', CAST(N'1987-09-22T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (106, N'Obediah', N'Hebble', N'Male', N'[email protected]', N'136-498-0524', CAST(N'1999-08-21T00:00:00.0000000' AS DateTime2), N'Assistant Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (107, N'Ives', N'Hallford', N'Male', N'[email protected]', N'310-434-9989', CAST(N'1985-12-16T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (108, N'Binky', N'Caney', N'Male', N'[email protected]', N'733-799-7646', CAST(N'2023-11-11T00:00:00.0000000' AS DateTime2), N'Software Consultant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (109, N'Linette', N'Colgan', N'Female', N'[email protected]', N'409-211-2815', CAST(N'1997-03-28T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (110, N'Yevette', N'Ohrtmann', N'Female', N'[email protected]', N'749-850-4089', CAST(N'1992-04-01T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (111, N'Irwin', N'Izakof', N'Male', N'[email protected]', N'852-804-3510', CAST(N'1989-08-09T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (112, N'Morissa', N'Tripney', N'Female', N'[email protected]', N'362-174-5467', CAST(N'1999-04-05T00:00:00.0000000' AS DateTime2), N'Senior Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (113, N'Carly', N'Boutwell', N'Male', N'[email protected]', N'116-510-7675', CAST(N'2005-11-28T00:00:00.0000000' AS DateTime2), N'Senior Developer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (114, N'Jeremy', N'Staddart', N'Male', N'[email protected]', N'690-319-5885', CAST(N'1987-12-04T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (115, N'Gabie', N'Beszant', N'Male', N'[email protected]', N'768-708-4742', CAST(N'1999-06-14T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (116, N'Urbano', N'Simms', N'Male', N'[email protected]', N'923-500-4130', CAST(N'1988-08-25T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (117, N'Simeon', N'Scrogges', N'Male', N'[email protected]', N'744-597-0934', CAST(N'2011-12-22T00:00:00.0000000' AS DateTime2), N'Office Assistant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (118, N'Micki', N'Dummett', N'Female', N'[email protected]', N'724-280-5352', CAST(N'1987-07-21T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (119, N'Lou', N'Siward', N'Male', N'[email protected]', N'167-372-3638', CAST(N'1993-11-02T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (120, N'Schuyler', N'Warlock', N'Male', N'[email protected]', N'278-573-1555', CAST(N'1986-09-29T00:00:00.0000000' AS DateTime2), N'Senior Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (121, N'Hilly', N'Oger', N'Male', N'[email protected]', N'450-956-8348', CAST(N'2024-10-08T00:00:00.0000000' AS DateTime2), N'Information Systems Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (122, N'Waylen', N'Hearl', N'Male', N'[email protected]', N'253-308-7718', CAST(N'2023-12-29T00:00:00.0000000' AS DateTime2), N'Research Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (123, N'Findlay', N'Woodvine', N'Genderqueer', N'[email protected]', N'248-445-8415', CAST(N'2016-07-27T00:00:00.0000000' AS DateTime2), N'Engineer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (124, N'Faith', N'Gianullo', N'Female', N'[email protected]', N'184-160-5540', CAST(N'2024-09-13T00:00:00.0000000' AS DateTime2), N'Paralegal')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (125, N'Abbot', N'Kittredge', N'Male', N'[email protected]', N'880-863-1545', CAST(N'2008-01-11T00:00:00.0000000' AS DateTime2), N'Research Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (126, N'Dorene', N'Wollers', N'Female', N'[email protected]', N'238-141-5875', CAST(N'2022-02-21T00:00:00.0000000' AS DateTime2), N'VP Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (127, N'Caria', N'Cummins', N'Female', N'[email protected]', N'248-847-2238', CAST(N'1993-08-02T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (128, N'Dayle', N'Toquet', N'Female', N'[email protected]', N'615-107-4088', CAST(N'1987-04-12T00:00:00.0000000' AS DateTime2), N'Chemical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (129, N'Abbot', N'Rattenberie', N'Male', N'[email protected]', N'854-356-8843', CAST(N'2015-07-31T00:00:00.0000000' AS DateTime2), N'Chemical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (130, N'Harlan', N'Cruce', N'Male', N'[email protected]', N'663-463-8566', CAST(N'1980-10-17T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (131, N'Allissa', N'Gasgarth', N'Female', N'[email protected]', N'773-662-7189', CAST(N'2013-09-16T00:00:00.0000000' AS DateTime2), N'Actuary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (132, N'Colan', N'Hammer', N'Male', N'[email protected]', N'569-549-3227', CAST(N'1981-01-01T00:00:00.0000000' AS DateTime2), N'Web Designer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (133, N'Corbin', N'Wooller', N'Male', N'[email protected]', N'140-815-5684', CAST(N'1981-10-22T00:00:00.0000000' AS DateTime2), N'Geological Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (134, N'Urbano', N'Norrington', N'Male', N'[email protected]', N'958-865-8868', CAST(N'2001-08-24T00:00:00.0000000' AS DateTime2), N'Senior Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (135, N'Rockey', N'Krahl', N'Male', N'[email protected]', N'388-394-3558', CAST(N'1991-03-31T00:00:00.0000000' AS DateTime2), N'Teacher')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (136, N'Haily', N'Graveney', N'Female', N'[email protected]', N'176-576-2065', CAST(N'1993-11-28T00:00:00.0000000' AS DateTime2), N'Web Developer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (137, N'Bart', N'Eyden', N'Male', N'[email protected]', N'645-622-5837', CAST(N'1999-09-24T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (138, N'Julio', N'Coxhead', N'Male', N'[email protected]', N'845-303-7905', CAST(N'1989-09-06T00:00:00.0000000' AS DateTime2), N'Developer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (139, N'Hunfredo', N'Simmonett', N'Male', N'[email protected]', N'565-354-3717', CAST(N'1988-01-16T00:00:00.0000000' AS DateTime2), N'Senior Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (140, N'Thorin', N'Mullaly', N'Male', N'[email protected]', N'365-347-1309', CAST(N'2010-05-20T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (141, N'Pattin', N'Allum', N'Male', N'[email protected]', N'895-803-7163', CAST(N'1992-02-17T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (142, N'Suzann', N'Tooze', N'Female', N'[email protected]', N'250-472-5458', CAST(N'1980-04-25T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (143, N'Danit', N'Allderidge', N'Female', N'[email protected]', N'574-259-7222', CAST(N'1988-08-17T00:00:00.0000000' AS DateTime2), N'Accountant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (144, N'Storm', N'Haffard', N'Female', N'[email protected]', N'597-715-2856', CAST(N'2001-06-24T00:00:00.0000000' AS DateTime2), N'Accounting Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (145, N'Dur', N'Sandy', N'Male', N'[email protected]', N'199-622-6542', CAST(N'1992-01-24T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (146, N'Izabel', N'Haffner', N'Female', N'[email protected]', N'381-514-7147', CAST(N'1985-07-18T00:00:00.0000000' AS DateTime2), N'Staff Accountant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (147, N'Luis', N'Hawket', N'Genderfluid', N'[email protected]', N'314-197-3872', CAST(N'1984-05-17T00:00:00.0000000' AS DateTime2), N'VP Quality Control')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (148, N'Carree', N'Grievson', N'Female', N'[email protected]', N'880-499-2588', CAST(N'2005-04-11T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (149, N'Shirlene', N'Lacey', N'Female', N'[email protected]', N'230-324-3136', CAST(N'1987-10-06T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (150, N'Launce', N'Bachmann', N'Male', N'[email protected]', N'779-810-9200', CAST(N'2005-09-21T00:00:00.0000000' AS DateTime2), N'Senior Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (151, N'Lurlene', N'Tysack', N'Female', N'[email protected]', N'124-596-9262', CAST(N'2013-10-27T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (152, N'Haslett', N'Lammas', N'Male', N'[email protected]', N'482-692-4402', CAST(N'1983-10-21T00:00:00.0000000' AS DateTime2), N'Community Outreach Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (153, N'Georgianne', N'Proby', N'Female', N'[email protected]', N'616-884-5654', CAST(N'1991-05-24T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (154, N'Fidole', N'Jozefczak', N'Male', N'[email protected]', N'694-763-6042', CAST(N'2005-11-09T00:00:00.0000000' AS DateTime2), N'Analyst Programmer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (155, N'Bob', N'Wiltshaw', N'Male', N'[email protected]', N'813-388-2270', CAST(N'2013-02-05T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (156, N'Emmy', N'Bowcher', N'Male', N'[email protected]', N'905-769-9702', CAST(N'2009-04-16T00:00:00.0000000' AS DateTime2), N'Account Representative IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (157, N'Breanne', N'O''Duggan', N'Female', N'[email protected]', N'106-690-6827', CAST(N'1999-02-19T00:00:00.0000000' AS DateTime2), N'Food Chemist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (158, N'Emelda', N'Siddeley', N'Non-binary', N'[email protected]', N'559-274-2951', CAST(N'1986-09-26T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (159, N'Brandise', N'Gain', N'Female', N'[email protected]', N'794-444-3657', CAST(N'2023-11-22T00:00:00.0000000' AS DateTime2), N'General Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (160, N'Trudie', N'Pardoe', N'Female', N'[email protected]', N'423-785-6972', CAST(N'2003-11-21T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (161, N'Edith', N'Millan', N'Female', N'[email protected]', N'363-225-3837', CAST(N'2013-10-16T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (162, N'Rosabelle', N'Simone', N'Female', N'[email protected]', N'780-643-8075', CAST(N'1980-04-16T00:00:00.0000000' AS DateTime2), N'Automation Specialist III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (163, N'Quincy', N'Orro', N'Male', N'[email protected]', N'545-448-2212', CAST(N'1989-05-20T00:00:00.0000000' AS DateTime2), N'VP Quality Control')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (164, N'Evangelia', N'Kiossel', N'Female', N'[email protected]', N'455-614-6561', CAST(N'2012-01-01T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (165, N'Almira', N'Poetz', N'Non-binary', N'[email protected]', N'960-129-7371', CAST(N'2017-12-29T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (166, N'Norry', N'Euler', N'Female', N'[email protected]', N'273-698-1309', CAST(N'2016-05-14T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (167, N'Bibbye', N'Minihane', N'Female', N'[email protected]', N'927-938-1241', CAST(N'1983-08-29T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (168, N'Fara', N'Abrahmson', N'Female', N'[email protected]', N'356-316-4840', CAST(N'1996-06-13T00:00:00.0000000' AS DateTime2), N'Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (169, N'Curtice', N'Burkin', N'Male', N'[email protected]', N'996-115-7233', CAST(N'1993-07-25T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (170, N'Egbert', N'Romme', N'Male', N'[email protected]', N'815-456-0546', CAST(N'1994-09-27T00:00:00.0000000' AS DateTime2), N'Software Engineer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (171, N'Kerwinn', N'Grigolashvill', N'Male', N'[email protected]', N'162-790-3959', CAST(N'1989-06-20T00:00:00.0000000' AS DateTime2), N'Community Outreach Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (172, N'Hunter', N'Gniewosz', N'Male', N'[email protected]', N'909-426-8505', CAST(N'2018-09-30T00:00:00.0000000' AS DateTime2), N'Community Outreach Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (173, N'Orelia', N'Arthan', N'Genderfluid', N'[email protected]', N'172-905-2679', CAST(N'2004-11-28T00:00:00.0000000' AS DateTime2), N'Nurse Practicioner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (174, N'Susanne', N'Gerssam', N'Female', N'[email protected]', N'167-228-8298', CAST(N'2020-01-11T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (175, N'Quinn', N'Daniau', N'Male', N'[email protected]', N'850-676-8209', CAST(N'2014-08-30T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (176, N'Aliza', N'Durnin', N'Female', N'[email protected]', N'269-421-3378', CAST(N'2022-12-01T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (177, N'Cassie', N'Solly', N'Male', N'[email protected]', N'436-458-2876', CAST(N'2014-11-15T00:00:00.0000000' AS DateTime2), N'Actuary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (178, N'Ferdy', N'Breakey', N'Genderfluid', N'[email protected]', N'344-733-7061', CAST(N'2020-03-07T00:00:00.0000000' AS DateTime2), N'Clinical Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (179, N'Cherin', N'Crosdill', N'Female', N'[email protected]', N'187-119-5910', CAST(N'1990-06-01T00:00:00.0000000' AS DateTime2), N'Pharmacist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (180, N'Krystal', N'Van der Linde', N'Female', N'[email protected]', N'685-176-9739', CAST(N'2012-05-17T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (181, N'Riane', N'Borgesio', N'Female', N'[email protected]', N'763-314-0293', CAST(N'1986-05-29T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (182, N'Egan', N'Theakston', N'Male', N'[email protected]', N'559-913-6465', CAST(N'2012-04-03T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (183, N'Mylo', N'Hissie', N'Male', N'[email protected]', N'424-571-1041', CAST(N'2008-11-11T00:00:00.0000000' AS DateTime2), N'Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (184, N'Gonzales', N'Murcott', N'Male', N'[email protected]', N'655-788-0626', CAST(N'1988-09-09T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (185, N'Ros', N'Minerdo', N'Female', N'[email protected]', N'197-547-3393', CAST(N'1981-02-19T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (186, N'Sallyanne', N'Goalley', N'Female', N'[email protected]', N'799-634-9362', CAST(N'2006-10-07T00:00:00.0000000' AS DateTime2), N'Structural Analysis Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (187, N'Marten', N'Lingfoot', N'Male', N'[email protected]', N'138-472-7385', CAST(N'2011-01-26T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (188, N'Bruce', N'Rolingson', N'Male', N'[email protected]', N'245-115-8457', CAST(N'2011-11-07T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (189, N'Sergeant', N'McCrohon', N'Male', N'[email protected]', N'921-196-1440', CAST(N'2018-10-25T00:00:00.0000000' AS DateTime2), N'Dental Hygienist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (190, N'Clyde', N'Basden', N'Genderqueer', N'[email protected]', N'468-529-2684', CAST(N'1982-07-19T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (191, N'Dorthea', N'Torrans', N'Female', N'[email protected]', N'299-829-2561', CAST(N'1982-08-30T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (192, N'Wenonah', N'Cluse', N'Female', N'[email protected]', N'155-538-2347', CAST(N'2022-09-20T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (193, N'Rowan', N'Keddle', N'Male', N'[email protected]', N'796-194-3922', CAST(N'2006-01-31T00:00:00.0000000' AS DateTime2), N'Clinical Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (194, N'Deina', N'Fridd', N'Female', N'[email protected]', N'712-931-1212', CAST(N'1982-08-19T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (195, N'Hatty', N'Carlone', N'Female', N'[email protected]', N'697-952-5269', CAST(N'2006-09-10T00:00:00.0000000' AS DateTime2), N'Automation Specialist III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (196, N'Obediah', N'Cromb', N'Male', N'[email protected]', N'663-104-3358', CAST(N'2016-04-16T00:00:00.0000000' AS DateTime2), N'Senior Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (197, N'Arvin', N'Liggens', N'Male', N'[email protected]', N'360-430-0124', CAST(N'1996-03-19T00:00:00.0000000' AS DateTime2), N'Pharmacist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (198, N'Luise', N'Whittock', N'Female', N'[email protected]', N'150-574-7852', CAST(N'2006-02-19T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (199, N'Dedra', N'Tine', N'Genderqueer', N'[email protected]', N'179-984-2458', CAST(N'1985-12-17T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (200, N'Teri', N'Thrasher', N'Female', N'[email protected]', N'390-227-4912', CAST(N'1994-06-16T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (201, N'Laurie', N'Avrahamoff', N'Female', N'[email protected]', N'642-152-1111', CAST(N'2020-04-20T00:00:00.0000000' AS DateTime2), N'Assistant Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (202, N'Raymund', N'Saunier', N'Male', N'[email protected]', N'687-668-9006', CAST(N'2013-09-14T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (203, N'Guntar', N'Bonehill', N'Male', N'[email protected]', N'838-839-9955', CAST(N'1997-11-29T00:00:00.0000000' AS DateTime2), N'Account Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (204, N'Barbette', N'O''Shiel', N'Female', N'[email protected]', N'198-749-4461', CAST(N'2019-10-09T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (205, N'Emelen', N'Simonato', N'Male', N'[email protected]', N'122-133-4536', CAST(N'2025-01-27T00:00:00.0000000' AS DateTime2), N'Staff Accountant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (206, N'Claybourne', N'Mor', N'Male', N'[email protected]', N'287-610-1978', CAST(N'2019-08-13T00:00:00.0000000' AS DateTime2), N'Business Systems Development Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (207, N'Lauren', N'Gliddon', N'Female', N'[email protected]', N'651-572-7094', CAST(N'2013-02-17T00:00:00.0000000' AS DateTime2), N'Health Coach II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (208, N'Berk', N'Tunuy', N'Male', N'[email protected]', N'432-699-8590', CAST(N'2001-11-04T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (209, N'Norris', N'Nightingale', N'Male', N'[email protected]', N'901-622-0847', CAST(N'1995-10-11T00:00:00.0000000' AS DateTime2), N'Chemical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (210, N'Quinton', N'Cuzen', N'Polygender', N'[email protected]', N'937-699-0197', CAST(N'2025-09-21T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (211, N'Innis', N'Draye', N'Male', N'[email protected]', N'453-681-2002', CAST(N'1995-11-21T00:00:00.0000000' AS DateTime2), N'VP Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (212, N'Cloe', N'Loynton', N'Female', N'[email protected]', N'769-806-1071', CAST(N'1990-03-14T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (213, N'Romonda', N'McAuliffe', N'Female', N'[email protected]', N'896-445-9338', CAST(N'2020-12-21T00:00:00.0000000' AS DateTime2), N'Assistant Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (214, N'Jacintha', N'Wylie', N'Female', N'[email protected]', N'248-486-0630', CAST(N'2015-04-13T00:00:00.0000000' AS DateTime2), N'Software Test Engineer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (215, N'Hube', N'Damrel', N'Male', N'[email protected]', N'887-181-8880', CAST(N'1981-11-22T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (216, N'Devin', N'Dettmar', N'Bigender', N'[email protected]', N'283-560-4937', CAST(N'1980-07-03T00:00:00.0000000' AS DateTime2), N'Staff Accountant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (217, N'Arliene', N'Bartolini', N'Female', N'[email protected]', N'162-559-1612', CAST(N'1991-09-22T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (218, N'Durward', N'Beamish', N'Male', N'[email protected]', N'227-709-8894', CAST(N'2012-01-17T00:00:00.0000000' AS DateTime2), N'Accountant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (219, N'Lindsy', N'Coughtrey', N'Genderqueer', N'[email protected]', N'612-881-1880', CAST(N'2024-03-27T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (220, N'Clarence', N'Farndon', N'Male', N'[email protected]', N'420-162-6510', CAST(N'2003-08-09T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (221, N'Rainer', N'Flitcroft', N'Male', N'[email protected]', N'286-405-2475', CAST(N'1998-06-04T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (222, N'Marion', N'Thornhill', N'Male', N'[email protected]', N'952-487-7047', CAST(N'2026-02-24T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (223, N'Faustina', N'Twohig', N'Female', N'[email protected]', N'919-517-0526', CAST(N'1997-03-13T00:00:00.0000000' AS DateTime2), N'Pharmacist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (224, N'Renato', N'Rigden', N'Male', N'[email protected]', N'572-601-2373', CAST(N'2019-01-31T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (225, N'Auroora', N'Addington', N'Female', N'[email protected]', N'855-109-6329', CAST(N'2014-11-28T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (226, N'Abie', N'Pinnington', N'Polygender', N'[email protected]', N'801-940-5324', CAST(N'2000-08-01T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (227, N'Eveline', N'Tomich', N'Female', N'[email protected]', N'492-421-2629', CAST(N'2007-04-03T00:00:00.0000000' AS DateTime2), N'VP Quality Control')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (228, N'Vitoria', N'Slides', N'Female', N'[email protected]', N'650-674-3537', CAST(N'1991-09-29T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (229, N'Calvin', N'Summersett', N'Male', N'[email protected]', N'499-262-8216', CAST(N'1983-03-27T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (230, N'Kameko', N'Urquhart', N'Female', N'[email protected]', N'557-353-8875', CAST(N'2013-09-25T00:00:00.0000000' AS DateTime2), N'Database Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (231, N'Bobbette', N'Bineham', N'Female', N'[email protected]', N'333-592-1599', CAST(N'2015-11-05T00:00:00.0000000' AS DateTime2), N'Accountant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (232, N'Floyd', N'Dilon', N'Male', N'[email protected]', N'653-985-1981', CAST(N'2009-05-14T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (233, N'Augustine', N'Moreby', N'Female', N'[email protected]', N'368-866-4834', CAST(N'2016-04-24T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (234, N'Stewart', N'Cluff', N'Male', N'[email protected]', N'786-617-2191', CAST(N'2008-02-26T00:00:00.0000000' AS DateTime2), N'Recruiter')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (235, N'Tiphani', N'Gosby', N'Female', N'[email protected]', N'462-715-1801', CAST(N'1997-07-17T00:00:00.0000000' AS DateTime2), N'Compensation Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (236, N'Mae', N'Whodcoat', N'Female', N'[email protected]', N'968-499-7201', CAST(N'1983-02-18T00:00:00.0000000' AS DateTime2), N'Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (237, N'Katya', N'Ellar', N'Female', N'[email protected]', N'351-666-3655', CAST(N'2023-12-25T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (238, N'Ottilie', N'De Hoogh', N'Female', N'[email protected]', N'537-384-1102', CAST(N'1990-04-14T00:00:00.0000000' AS DateTime2), N'Senior Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (239, N'Conroy', N'McAlister', N'Male', N'[email protected]', N'221-696-3662', CAST(N'2022-04-30T00:00:00.0000000' AS DateTime2), N'Software Engineer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (240, N'Duffie', N'Esby', N'Male', N'[email protected]', N'240-560-4625', CAST(N'2006-07-19T00:00:00.0000000' AS DateTime2), N'Community Outreach Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (241, N'Gordan', N'Storrie', N'Polygender', N'[email protected]', N'614-121-8595', CAST(N'2006-10-03T00:00:00.0000000' AS DateTime2), N'Web Developer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (242, N'Dania', N'Treske', N'Female', N'[email protected]', N'114-575-7678', CAST(N'1981-04-30T00:00:00.0000000' AS DateTime2), N'Information Systems Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (243, N'Ernesta', N'Parham', N'Female', N'[email protected]', N'323-601-6509', CAST(N'2000-11-03T00:00:00.0000000' AS DateTime2), N'Statistician IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (244, N'Bernice', N'Liddel', N'Female', N'[email protected]', N'587-553-0196', CAST(N'1982-06-07T00:00:00.0000000' AS DateTime2), N'Account Representative I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (245, N'Mariellen', N'Woolard', N'Agender', N'[email protected]', N'238-544-8157', CAST(N'1987-04-02T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (246, N'Valentino', N'Ulyet', N'Male', N'[email protected]', N'927-640-1133', CAST(N'1998-10-28T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (247, N'Lance', N'Lafont', N'Male', N'[email protected]', N'915-724-5731', CAST(N'1988-03-22T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (248, N'Powell', N'Withers', N'Male', N'[email protected]', N'784-714-3531', CAST(N'2003-09-03T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (249, N'Zelig', N'Fullick', N'Male', N'[email protected]', N'850-870-6162', CAST(N'1995-04-18T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (250, N'Fidela', N'Croy', N'Female', N'[email protected]', N'970-951-7811', CAST(N'1997-05-06T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (251, N'Berny', N'Duce', N'Female', N'[email protected]', N'191-849-4476', CAST(N'1981-02-28T00:00:00.0000000' AS DateTime2), N'Geological Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (252, N'Thibaut', N'Vonderdell', N'Male', N'[email protected]', N'730-405-9299', CAST(N'2000-03-21T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (253, N'Gabriel', N'Dimmack', N'Male', N'[email protected]', N'427-888-3801', CAST(N'2007-10-05T00:00:00.0000000' AS DateTime2), N'Web Designer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (254, N'Florella', N'Mattys', N'Female', N'[email protected]', N'799-202-5823', CAST(N'1985-02-02T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (255, N'Rosina', N'Gavrielli', N'Female', N'[email protected]', N'522-659-1187', CAST(N'1996-09-15T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (256, N'Patty', N'Benkin', N'Male', N'[email protected]', N'945-948-8366', CAST(N'2013-01-04T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (257, N'Kristyn', N'Haskayne', N'Female', N'[email protected]', N'867-330-1811', CAST(N'2012-09-27T00:00:00.0000000' AS DateTime2), N'Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (258, N'Upton', N'Southcott', N'Male', N'[email protected]', N'644-350-5575', CAST(N'1984-04-18T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (259, N'Kippie', N'Siddall', N'Female', N'[email protected]', N'886-705-5010', CAST(N'2012-06-07T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (260, N'Jamaal', N'Pickaver', N'Male', N'[email protected]', N'308-354-5643', CAST(N'2014-12-21T00:00:00.0000000' AS DateTime2), N'Chief Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (261, N'Harmon', N'Ellings', N'Male', N'[email protected]', N'974-114-1225', CAST(N'2010-08-08T00:00:00.0000000' AS DateTime2), N'Dental Hygienist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (262, N'Nero', N'Corballis', N'Male', N'[email protected]', N'992-927-0536', CAST(N'1985-02-16T00:00:00.0000000' AS DateTime2), N'Software Consultant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (263, N'Chandra', N'Sevier', N'Female', N'[email protected]', N'604-223-6483', CAST(N'1987-12-03T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (264, N'Forrest', N'Farrall', N'Male', N'[email protected]', N'148-745-7838', CAST(N'2017-10-09T00:00:00.0000000' AS DateTime2), N'Geological Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (265, N'Carroll', N'McIlvaney', N'Male', N'[email protected]', N'770-628-5704', CAST(N'2023-03-09T00:00:00.0000000' AS DateTime2), N'Human Resources Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (266, N'Roderich', N'Chrismas', N'Male', N'[email protected]', N'413-813-3793', CAST(N'2017-08-13T00:00:00.0000000' AS DateTime2), N'Statistician IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (267, N'Babbette', N'Darling', N'Female', N'[email protected]', N'531-409-8876', CAST(N'1986-01-02T00:00:00.0000000' AS DateTime2), N'Food Chemist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (268, N'Taddeusz', N'Sinton', N'Polygender', N'[email protected]', N'128-719-1337', CAST(N'1980-12-16T00:00:00.0000000' AS DateTime2), N'Information Systems Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (269, N'Wernher', N'Filippello', N'Male', N'[email protected]', N'791-838-9520', CAST(N'1989-08-01T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (270, N'Kaine', N'Bickerdyke', N'Male', N'[email protected]', N'913-460-0274', CAST(N'1993-08-04T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (271, N'Neala', N'De Brett', N'Female', N'[email protected]', N'602-512-5618', CAST(N'1984-04-30T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (272, N'Chan', N'Louiset', N'Male', N'[email protected]', N'520-678-6641', CAST(N'1988-12-30T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (273, N'Arlyn', N'Lillgard', N'Female', N'[email protected]', N'502-364-4915', CAST(N'2012-01-25T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (274, N'Austin', N'Beccero', N'Female', N'[email protected]', N'614-441-8450', CAST(N'2019-12-18T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (275, N'Maxy', N'Tyler', N'Male', N'[email protected]', N'332-408-2083', CAST(N'2021-10-09T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (276, N'Antonie', N'McGiveen', N'Female', N'[email protected]', N'153-949-8382', CAST(N'2004-10-14T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (277, N'Brendis', N'Gildersleeve', N'Male', N'[email protected]', N'222-586-0023', CAST(N'2007-04-06T00:00:00.0000000' AS DateTime2), N'Web Designer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (278, N'Raimondo', N'Gauvain', N'Male', N'[email protected]', N'985-223-2371', CAST(N'2000-06-08T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (279, N'Camel', N'MacCurlye', N'Female', N'[email protected]', N'813-881-3537', CAST(N'1986-04-29T00:00:00.0000000' AS DateTime2), N'Database Administrator I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (280, N'Ernesto', N'Roony', N'Male', N'[email protected]', N'686-763-4418', CAST(N'2007-09-12T00:00:00.0000000' AS DateTime2), N'Geological Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (281, N'Xenos', N'Gregorowicz', N'Male', N'[email protected]', N'430-375-4777', CAST(N'2024-07-17T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (282, N'Hayden', N'Croydon', N'Male', N'[email protected]', N'535-313-8483', CAST(N'2011-05-30T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (283, N'Ellery', N'Fake', N'Male', N'[email protected]', N'476-658-1936', CAST(N'1993-01-14T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (284, N'Zechariah', N'Sawart', N'Male', N'[email protected]', N'622-186-4706', CAST(N'2014-08-18T00:00:00.0000000' AS DateTime2), N'Paralegal')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (285, N'Rosco', N'Braz', N'Male', N'[email protected]', N'735-876-7896', CAST(N'1982-10-18T00:00:00.0000000' AS DateTime2), N'Staff Scientist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (286, N'Neda', N'Boice', N'Female', N'[email protected]', N'265-647-1901', CAST(N'2021-06-05T00:00:00.0000000' AS DateTime2), N'Software Engineer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (287, N'Roxana', N'Pavese', N'Female', N'[email protected]', N'542-720-0654', CAST(N'2005-06-16T00:00:00.0000000' AS DateTime2), N'Structural Analysis Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (288, N'Sileas', N'Mabone', N'Female', N'[email protected]', N'266-919-8379', CAST(N'2024-11-25T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (289, N'Hilario', N'Leghorn', N'Male', N'[email protected]', N'623-266-1210', CAST(N'1991-03-18T00:00:00.0000000' AS DateTime2), N'Accounting Assistant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (290, N'Hillard', N'Perotti', N'Male', N'[email protected]', N'171-571-1384', CAST(N'2013-05-11T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (291, N'Homere', N'Bythell', N'Non-binary', N'[email protected]', N'443-306-9990', CAST(N'1981-02-27T00:00:00.0000000' AS DateTime2), N'Human Resources Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (292, N'Sondra', N'Starsmeare', N'Female', N'[email protected]', N'512-148-6950', CAST(N'2009-10-26T00:00:00.0000000' AS DateTime2), N'Engineer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (293, N'Binnie', N'Weblin', N'Female', N'[email protected]', N'521-123-9423', CAST(N'1992-07-30T00:00:00.0000000' AS DateTime2), N'Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (294, N'Erick', N'Sloane', N'Male', N'[email protected]', N'922-746-7871', CAST(N'2001-12-13T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (295, N'Isidoro', N'Bussen', N'Male', N'[email protected]', N'115-918-6215', CAST(N'1985-06-07T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (296, N'Dionis', N'Boydell', N'Female', N'[email protected]', N'648-456-3431', CAST(N'1993-05-13T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (297, N'Coleen', N'Meekins', N'Female', N'[email protected]', N'241-937-9922', CAST(N'2008-03-04T00:00:00.0000000' AS DateTime2), N'Recruiter')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (298, N'Francis', N'Stickels', N'Male', N'[email protected]', N'649-764-6657', CAST(N'1999-03-02T00:00:00.0000000' AS DateTime2), N'Statistician IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (299, N'Ellwood', N'Daen', N'Bigender', N'[email protected]', N'733-956-0642', CAST(N'1990-08-06T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (300, N'Alic', N'Hrishchenko', N'Male', N'[email protected]', N'364-661-9109', CAST(N'1999-02-19T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (301, N'Andy', N'Amberger', N'Male', N'[email protected]', N'673-803-9171', CAST(N'1987-07-10T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (302, N'Lory', N'Dacombe', N'Female', N'[email protected]', N'844-345-2645', CAST(N'2023-11-06T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (303, N'Melodee', N'Baudino', N'Female', N'[email protected]', N'342-112-2497', CAST(N'1999-09-01T00:00:00.0000000' AS DateTime2), N'Desktop Support Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (304, N'Germayne', N'Furtado', N'Genderfluid', N'[email protected]', N'192-487-0043', CAST(N'1982-12-18T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (305, N'Garreth', N'Rosenwald', N'Male', N'[email protected]', N'557-328-5371', CAST(N'2022-09-15T00:00:00.0000000' AS DateTime2), N'Programmer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (306, N'Brigitte', N'Mountney', N'Female', N'[email protected]', N'367-871-3380', CAST(N'2013-01-29T00:00:00.0000000' AS DateTime2), N'Chief Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (307, N'Marshal', N'Chandler', N'Male', N'[email protected]', N'779-956-3580', CAST(N'2018-11-09T00:00:00.0000000' AS DateTime2), N'Compensation Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (308, N'Ofella', N'Winkless', N'Female', N'[email protected]', N'115-963-7933', CAST(N'1996-02-22T00:00:00.0000000' AS DateTime2), N'Marketing Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (309, N'Conant', N'Priditt', N'Male', N'[email protected]', N'957-949-5311', CAST(N'1981-06-15T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (310, N'Irvin', N'Camamill', N'Male', N'[email protected]', N'219-613-5460', CAST(N'2017-04-07T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (311, N'Cookie', N'Boxe', N'Female', N'[email protected]', N'326-773-6108', CAST(N'1985-02-03T00:00:00.0000000' AS DateTime2), N'Nurse Practicioner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (312, N'Nealy', N'Readwin', N'Male', N'[email protected]', N'195-539-9511', CAST(N'2008-01-05T00:00:00.0000000' AS DateTime2), N'Paralegal')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (313, N'Matthus', N'Waggett', N'Male', N'[email protected]', N'406-322-3897', CAST(N'2019-09-12T00:00:00.0000000' AS DateTime2), N'Recruiter')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (314, N'Polly', N'Giacomini', N'Female', N'[email protected]', N'728-154-8985', CAST(N'1999-03-16T00:00:00.0000000' AS DateTime2), N'Administrative Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (315, N'Godard', N'Southwood', N'Male', N'[email protected]', N'563-831-2283', CAST(N'2011-10-17T00:00:00.0000000' AS DateTime2), N'Software Test Engineer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (316, N'Dacie', N'Giocannoni', N'Female', N'[email protected]', N'919-341-3959', CAST(N'1985-12-31T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (317, N'Arlena', N'Kite', N'Non-binary', N'[email protected]', N'665-737-8713', CAST(N'1996-10-10T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (318, N'Heath', N'Deval', N'Male', N'[email protected]', N'875-686-7943', CAST(N'2018-07-22T00:00:00.0000000' AS DateTime2), N'General Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (319, N'Hugibert', N'Greed', N'Male', N'[email protected]', N'584-392-0583', CAST(N'1987-07-08T00:00:00.0000000' AS DateTime2), N'Director of Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (320, N'Luther', N'Shevill', N'Male', N'[email protected]', N'361-688-7179', CAST(N'2001-02-15T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (321, N'Broderic', N'Dearnaly', N'Male', N'[email protected]', N'617-554-7610', CAST(N'1997-04-16T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (322, N'Clea', N'Grayshan', N'Bigender', N'[email protected]', N'475-781-6510', CAST(N'1996-08-01T00:00:00.0000000' AS DateTime2), N'Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (323, N'Derril', N'Nodin', N'Male', N'[email protected]', N'951-793-9768', CAST(N'2012-11-23T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (324, N'Jolyn', N'Shemwell', N'Female', N'[email protected]', N'833-695-8101', CAST(N'2018-06-21T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (325, N'Mar', N'Bloxland', N'Male', N'[email protected]', N'467-731-9182', CAST(N'1988-03-05T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (326, N'Adelbert', N'Lauret', N'Male', N'[email protected]', N'695-752-2744', CAST(N'1983-05-19T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (327, N'Sile', N'Pendreigh', N'Female', N'[email protected]', N'930-347-5545', CAST(N'1997-08-09T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (328, N'Fredric', N'Steketee', N'Male', N'[email protected]', N'922-483-4300', CAST(N'2006-11-12T00:00:00.0000000' AS DateTime2), N'Media Manager I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (329, N'Ritchie', N'Coolbear', N'Male', N'[email protected]', N'858-127-9523', CAST(N'2015-10-22T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (330, N'Gustave', N'Snaith', N'Male', N'[email protected]', N'661-679-7415', CAST(N'1981-08-15T00:00:00.0000000' AS DateTime2), N'Administrative Assistant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (331, N'Freddie', N'Borland', N'Female', N'[email protected]', N'826-777-0879', CAST(N'1990-07-06T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (332, N'Lin', N'Reye', N'Male', N'[email protected]', N'904-229-5490', CAST(N'2002-09-21T00:00:00.0000000' AS DateTime2), N'Accountant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (333, N'Leelah', N'Theis', N'Female', N'[email protected]', N'123-995-1607', CAST(N'1994-12-07T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (334, N'Walt', N'Lucian', N'Male', N'[email protected]', N'197-555-5708', CAST(N'2006-03-08T00:00:00.0000000' AS DateTime2), N'Programmer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (335, N'Hanni', N'Akram', N'Female', N'[email protected]', N'484-766-0732', CAST(N'1995-02-23T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (336, N'Sharon', N'Yansons', N'Female', N'[email protected]', N'477-518-9989', CAST(N'1981-05-03T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (337, N'Free', N'Glancey', N'Male', N'[email protected]', N'362-424-0278', CAST(N'1995-12-31T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (338, N'Oriana', N'Chastaing', N'Female', N'[email protected]', N'689-903-5042', CAST(N'1994-12-14T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (339, N'Spenser', N'Cawthery', N'Male', N'[email protected]', N'111-587-0982', CAST(N'2026-01-18T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (340, N'Jemimah', N'Bingall', N'Female', N'[email protected]', N'279-694-7920', CAST(N'1995-06-28T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (341, N'Erda', N'Waghorn', N'Female', N'[email protected]', N'973-432-6761', CAST(N'1989-07-01T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (342, N'Rosette', N'McGraw', N'Female', N'[email protected]', N'821-178-3308', CAST(N'2024-11-29T00:00:00.0000000' AS DateTime2), N'Geologist II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (343, N'Iain', N'Parkhouse', N'Male', N'[email protected]', N'648-499-7786', CAST(N'2019-03-15T00:00:00.0000000' AS DateTime2), N'Structural Analysis Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (344, N'Guilbert', N'Haslock', N'Male', N'[email protected]', N'746-998-9856', CAST(N'1983-02-26T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (345, N'Tallie', N'Bygrove', N'Male', N'[email protected]', N'838-832-6657', CAST(N'2012-01-15T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (346, N'Aldric', N'Whiteoak', N'Non-binary', N'[email protected]', N'158-562-8195', CAST(N'2023-05-02T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (347, N'Dilly', N'Dunsleve', N'Male', N'[email protected]', N'133-351-2932', CAST(N'1981-06-14T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (348, N'Reube', N'Roblett', N'Male', N'[email protected]', N'359-537-9717', CAST(N'1990-11-17T00:00:00.0000000' AS DateTime2), N'Web Developer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (349, N'Carlen', N'Negri', N'Female', N'[email protected]', N'361-577-3901', CAST(N'2022-01-04T00:00:00.0000000' AS DateTime2), N'Quality Control Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (350, N'Carree', N'Elt', N'Female', N'[email protected]', N'358-377-2807', CAST(N'2009-07-12T00:00:00.0000000' AS DateTime2), N'Software Consultant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (351, N'Galven', N'Grimwade', N'Genderfluid', N'[email protected]', N'831-962-9580', CAST(N'1997-05-17T00:00:00.0000000' AS DateTime2), N'Staff Accountant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (352, N'Vannie', N'DateOfBirther', N'Female', N'[email protected]', N'831-657-5812', CAST(N'2021-04-09T00:00:00.0000000' AS DateTime2), N'Paralegal')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (353, N'Nadiya', N'Fenwick', N'Bigender', N'[email protected]', N'839-182-0780', CAST(N'2021-06-18T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (354, N'Patric', N'Climo', N'Male', N'[email protected]', N'188-346-0646', CAST(N'2008-04-07T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (355, N'Josey', N'McKeveney', N'Female', N'[email protected]', N'236-272-0478', CAST(N'2022-12-24T00:00:00.0000000' AS DateTime2), N'Software Test Engineer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (356, N'Natasha', N'Leask', N'Female', N'[email protected]', N'807-617-5528', CAST(N'2004-01-03T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (357, N'Orland', N'Platfoot', N'Male', N'[email protected]', N'776-757-9174', CAST(N'2004-03-14T00:00:00.0000000' AS DateTime2), N'Database Administrator IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (358, N'Myer', N'Seivertsen', N'Male', N'[email protected]', N'746-976-0747', CAST(N'1993-02-08T00:00:00.0000000' AS DateTime2), N'Research Assistant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (359, N'Massimo', N'Belding', N'Male', N'[email protected]', N'404-269-6176', CAST(N'1985-08-16T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (360, N'Tailor', N'Digges', N'Male', N'[email protected]', N'130-799-8104', CAST(N'2018-06-01T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (361, N'Misty', N'Korlat', N'Female', N'[email protected]', N'710-559-4316', CAST(N'1984-08-24T00:00:00.0000000' AS DateTime2), N'Programmer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (362, N'Byrann', N'Roelofsen', N'Male', N'[email protected]', N'264-278-6792', CAST(N'1981-05-06T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (363, N'Babs', N'Brownhill', N'Female', N'[email protected]', N'436-207-7810', CAST(N'1992-09-24T00:00:00.0000000' AS DateTime2), N'Biostatistician IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (364, N'Evita', N'Maudling', N'Female', N'[email protected]', N'295-217-3694', CAST(N'1994-09-05T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (365, N'Cosmo', N'Heninghem', N'Male', N'[email protected]', N'422-729-7716', CAST(N'2005-10-28T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (366, N'Julee', N'Codling', N'Female', N'[email protected]', N'641-828-5126', CAST(N'1985-10-18T00:00:00.0000000' AS DateTime2), N'Media Manager I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (367, N'Whit', N'Cater', N'Male', N'[email protected]', N'281-419-5146', CAST(N'2017-08-19T00:00:00.0000000' AS DateTime2), N'Software Engineer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (368, N'Eleanora', N'Louw', N'Female', N'[email protected]', N'404-823-6606', CAST(N'2020-04-26T00:00:00.0000000' AS DateTime2), N'Accounting Assistant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (369, N'Jinny', N'Soigoux', N'Female', N'[email protected]', N'617-783-7674', CAST(N'1987-07-24T00:00:00.0000000' AS DateTime2), N'Programmer Analyst IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (370, N'Leonardo', N'Glenton', N'Male', N'[email protected]', N'386-366-6987', CAST(N'2022-03-05T00:00:00.0000000' AS DateTime2), N'Senior Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (371, N'Anders', N'Wellstead', N'Male', N'[email protected]', N'235-320-9371', CAST(N'1991-12-02T00:00:00.0000000' AS DateTime2), N'Analyst Programmer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (372, N'Godfry', N'Placido', N'Male', N'[email protected]', N'282-374-6592', CAST(N'1980-09-03T00:00:00.0000000' AS DateTime2), N'Office Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (373, N'Marve', N'Strippel', N'Male', N'[email protected]', N'796-760-0538', CAST(N'2002-07-03T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (374, N'Roxane', N'Benterman', N'Female', N'[email protected]', N'896-861-5788', CAST(N'2017-06-06T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (375, N'Odette', N'Townes', N'Female', N'[email protected]', N'956-732-7563', CAST(N'2024-08-02T00:00:00.0000000' AS DateTime2), N'Database Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (376, N'Birgitta', N'Purdey', N'Female', N'[email protected]', N'134-970-1339', CAST(N'2023-11-15T00:00:00.0000000' AS DateTime2), N'VP Quality Control')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (377, N'Kaycee', N'Pettegree', N'Female', N'[email protected]', N'611-488-3523', CAST(N'2022-04-05T00:00:00.0000000' AS DateTime2), N'Account Representative I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (378, N'Dunstan', N'Flexman', N'Male', N'[email protected]', N'567-671-2054', CAST(N'2015-05-17T00:00:00.0000000' AS DateTime2), N'Director of Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (379, N'Morris', N'Garrie', N'Male', N'[email protected]', N'631-315-8416', CAST(N'1985-07-29T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (380, N'Georgetta', N'Lampen', N'Female', N'[email protected]', N'525-761-2396', CAST(N'1992-07-11T00:00:00.0000000' AS DateTime2), N'Structural Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (381, N'Alva', N'Haryngton', N'Male', N'[email protected]', N'800-665-9313', CAST(N'1989-04-13T00:00:00.0000000' AS DateTime2), N'Developer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (382, N'Delphinia', N'Budnik', N'Female', N'[email protected]', N'571-289-8183', CAST(N'1989-07-09T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (383, N'Vanessa', N'Gerault', N'Female', N'[email protected]', N'858-932-9186', CAST(N'1999-06-30T00:00:00.0000000' AS DateTime2), N'Account Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (384, N'Garnette', N'Gibberd', N'Female', N'[email protected]', N'449-606-9524', CAST(N'2022-02-10T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (385, N'Christopher', N'Craddy', N'Male', N'[email protected]', N'807-115-4713', CAST(N'1987-12-18T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (386, N'Vladamir', N'Gillani', N'Male', N'[email protected]', N'462-983-1583', CAST(N'2007-07-09T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (387, N'Elle', N'Murrey', N'Female', N'[email protected]', N'229-324-0065', CAST(N'1998-09-06T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (388, N'Miner', N'Caldow', N'Male', N'[email protected]', N'350-667-4344', CAST(N'1988-09-24T00:00:00.0000000' AS DateTime2), N'Chemical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (389, N'Juliann', N'O''Cullinane', N'Female', N'[email protected]', N'894-288-0756', CAST(N'2003-05-12T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (390, N'Julio', N'Heinzel', N'Male', N'[email protected]', N'522-964-2372', CAST(N'2011-04-07T00:00:00.0000000' AS DateTime2), N'Assistant Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (391, N'Joelly', N'Cagan', N'Genderfluid', N'[email protected]', N'548-692-2898', CAST(N'1988-11-28T00:00:00.0000000' AS DateTime2), N'Marketing Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (392, N'Brynna', N'Hawney', N'Female', N'[email protected]', N'839-205-1309', CAST(N'2020-04-23T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (393, N'Gates', N'Polland', N'Female', N'[email protected]', N'237-951-4813', CAST(N'2000-11-10T00:00:00.0000000' AS DateTime2), N'Dental Hygienist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (394, N'Twila', N'Drewitt', N'Female', N'[email protected]', N'597-147-8175', CAST(N'2018-07-02T00:00:00.0000000' AS DateTime2), N'Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (395, N'Dotti', N'Worman', N'Female', N'[email protected]', N'355-595-7857', CAST(N'2024-08-09T00:00:00.0000000' AS DateTime2), N'Senior Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (396, N'Ralina', N'Aldington', N'Female', N'[email protected]', N'115-446-9601', CAST(N'1994-08-25T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (397, N'Abbey', N'Cuningham', N'Genderfluid', N'[email protected]', N'423-576-7961', CAST(N'2009-09-26T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (398, N'Allys', N'Cobleigh', N'Female', N'[email protected]', N'439-372-3568', CAST(N'1999-08-07T00:00:00.0000000' AS DateTime2), N'Actuary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (399, N'Corny', N'Haighton', N'Male', N'[email protected]', N'640-570-0694', CAST(N'2021-10-28T00:00:00.0000000' AS DateTime2), N'Compensation Analyst')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (400, N'Kayla', N'Bourthoumieux', N'Female', N'[email protected]', N'190-279-0196', CAST(N'1987-09-14T00:00:00.0000000' AS DateTime2), N'Research Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (401, N'Harriott', N'Mottinelli', N'Female', N'[email protected]', N'662-485-2495', CAST(N'2006-07-28T00:00:00.0000000' AS DateTime2), N'Staff Accountant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (402, N'Carolee', N'Giamo', N'Female', N'[email protected]', N'880-438-9436', CAST(N'1990-07-31T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (403, N'Helsa', N'Trower', N'Female', N'[email protected]', N'140-660-4183', CAST(N'2020-05-16T00:00:00.0000000' AS DateTime2), N'Administrative Assistant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (404, N'Pavla', N'Sibbet', N'Female', N'[email protected]', N'703-954-1771', CAST(N'2023-07-22T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (405, N'Rozalie', N'Tritten', N'Bigender', N'[email protected]', N'646-809-9639', CAST(N'2003-08-10T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (406, N'Alisa', N'Hartup', N'Female', N'[email protected]', N'896-112-1905', CAST(N'1993-05-21T00:00:00.0000000' AS DateTime2), N'Human Resources Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (407, N'Tristan', N'Morecombe', N'Male', N'[email protected]', N'829-309-4779', CAST(N'1998-10-12T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (408, N'Kahlil', N'Adriano', N'Male', N'[email protected]', N'682-877-9881', CAST(N'2000-03-10T00:00:00.0000000' AS DateTime2), N'Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (409, N'Jacklyn', N'Denne', N'Genderfluid', N'[email protected]', N'294-929-0914', CAST(N'2013-02-12T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (410, N'Onofredo', N'Burkinshaw', N'Male', N'[email protected]', N'961-904-2554', CAST(N'1989-05-10T00:00:00.0000000' AS DateTime2), N'Safety Technician I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (411, N'Harmonia', N'Danat', N'Female', N'[email protected]', N'558-370-2680', CAST(N'1991-12-01T00:00:00.0000000' AS DateTime2), N'Food Chemist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (412, N'Cherilyn', N'Sowood', N'Female', N'[email protected]', N'244-333-7366', CAST(N'2020-10-24T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (413, N'Lari', N'Beringer', N'Female', N'[email protected]', N'730-977-7158', CAST(N'1983-04-18T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (414, N'Beck', N'Antley', N'Male', N'[email protected]', N'959-805-1295', CAST(N'1988-10-25T00:00:00.0000000' AS DateTime2), N'Actuary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (415, N'Kimble', N'Szimon', N'Male', N'[email protected]', N'130-618-8646', CAST(N'2024-05-27T00:00:00.0000000' AS DateTime2), N'Senior Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (416, N'Caril', N'Bigglestone', N'Female', N'[email protected]', N'571-491-6507', CAST(N'2014-06-20T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (417, N'Townie', N'Mosco', N'Male', N'[email protected]', N'915-399-1160', CAST(N'2013-11-02T00:00:00.0000000' AS DateTime2), N'Office Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (418, N'Adham', N'Whitham', N'Male', N'[email protected]', N'768-708-0322', CAST(N'2020-03-30T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (419, N'Friedrich', N'Sherred', N'Male', N'[email protected]', N'126-605-8740', CAST(N'2018-07-06T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (420, N'Allis', N'Pechacek', N'Female', N'[email protected]', N'141-732-3233', CAST(N'2008-02-12T00:00:00.0000000' AS DateTime2), N'Dental Hygienist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (421, N'Dane', N'Arnow', N'Male', N'[email protected]', N'513-760-0552', CAST(N'1993-12-28T00:00:00.0000000' AS DateTime2), N'Developer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (422, N'Desmond', N'Guerry', N'Male', N'[email protected]', N'483-693-1903', CAST(N'1982-08-16T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (423, N'Pavel', N'Maylam', N'Male', N'[email protected]', N'139-845-7923', CAST(N'2002-09-23T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (424, N'Hanna', N'Blunt', N'Female', N'[email protected]', N'351-106-0049', CAST(N'2001-06-12T00:00:00.0000000' AS DateTime2), N'Systems Administrator I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (425, N'Jaimie', N'Chatto', N'Male', N'[email protected]', N'404-337-6211', CAST(N'1990-08-08T00:00:00.0000000' AS DateTime2), N'Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (426, N'Mill', N'Lord', N'Male', N'[email protected]', N'957-719-8435', CAST(N'2015-02-27T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (427, N'Peria', N'Sambals', N'Female', N'[email protected]', N'402-462-8374', CAST(N'1983-01-05T00:00:00.0000000' AS DateTime2), N'Account Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (428, N'Hoyt', N'Pheby', N'Male', N'[email protected]', N'778-898-7194', CAST(N'1995-09-05T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (429, N'Stavro', N'Flaonier', N'Male', N'[email protected]', N'473-666-2922', CAST(N'1998-02-25T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (430, N'Shanda', N'Durrell', N'Polygender', N'[email protected]', N'272-641-2753', CAST(N'1993-07-27T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (431, N'Lanita', N'Allam', N'Female', N'[email protected]', N'862-481-5636', CAST(N'1980-08-05T00:00:00.0000000' AS DateTime2), N'Clinical Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (432, N'Neila', N'Swate', N'Female', N'[email protected]', N'332-714-3792', CAST(N'2014-12-24T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (433, N'Colly', N'Sketcher', N'Female', N'[email protected]', N'981-858-1188', CAST(N'2020-09-12T00:00:00.0000000' AS DateTime2), N'Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (434, N'Dionis', N'Roon', N'Female', N'[email protected]', N'429-385-8238', CAST(N'1991-04-16T00:00:00.0000000' AS DateTime2), N'Information Systems Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (435, N'Anny', N'McIlroy', N'Bigender', N'[email protected]', N'414-202-3660', CAST(N'1996-02-29T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (436, N'Kassia', N'Wroth', N'Female', N'[email protected]', N'154-907-7502', CAST(N'1989-01-01T00:00:00.0000000' AS DateTime2), N'Director of Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (437, N'Hugues', N'Hairesnape', N'Male', N'[email protected]', N'303-223-6469', CAST(N'2008-10-02T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (438, N'Kim', N'Barks', N'Male', N'[email protected]', N'848-908-8741', CAST(N'1993-02-03T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (439, N'Bobby', N'Croucher', N'Male', N'[email protected]', N'153-353-1874', CAST(N'2020-01-24T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (440, N'Kippie', N'Machan', N'Male', N'[email protected]', N'815-908-7352', CAST(N'2023-08-14T00:00:00.0000000' AS DateTime2), N'Senior Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (441, N'Gael', N'Downton', N'Female', N'[email protected]', N'154-513-3875', CAST(N'1980-06-19T00:00:00.0000000' AS DateTime2), N'Staff Accountant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (442, N'Saidee', N'Cocher', N'Female', N'[email protected]', N'966-656-0942', CAST(N'2013-04-06T00:00:00.0000000' AS DateTime2), N'Office Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (443, N'Carney', N'Garrigan', N'Male', N'[email protected]', N'508-262-8585', CAST(N'1999-02-03T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (444, N'Dolores', N'Cowsby', N'Female', N'[email protected]', N'705-112-9129', CAST(N'2006-06-11T00:00:00.0000000' AS DateTime2), N'Safety Technician III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (445, N'Winonah', N'Gronno', N'Female', N'[email protected]', N'404-694-1995', CAST(N'2019-11-12T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (446, N'Ariela', N'Durram', N'Female', N'[email protected]', N'834-930-0654', CAST(N'1991-10-11T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (447, N'Howie', N'Kitcherside', N'Agender', N'[email protected]', N'527-886-2187', CAST(N'1984-12-14T00:00:00.0000000' AS DateTime2), N'Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (448, N'Penny', N'Schmidt', N'Female', N'[email protected]', N'375-132-2578', CAST(N'2015-05-03T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (449, N'Hildagard', N'Ashington', N'Female', N'[email protected]', N'861-342-0229', CAST(N'2016-10-09T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (450, N'Karlee', N'Shasnan', N'Female', N'[email protected]', N'640-535-4505', CAST(N'1981-04-07T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (451, N'Zonnya', N'Woodman', N'Female', N'[email protected]', N'648-485-7316', CAST(N'1991-02-25T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (452, N'Thaddeus', N'Sutch', N'Male', N'[email protected]', N'385-128-2704', CAST(N'1998-02-25T00:00:00.0000000' AS DateTime2), N'Web Designer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (453, N'Simeon', N'Walklott', N'Male', N'[email protected]', N'181-774-4880', CAST(N'1999-09-19T00:00:00.0000000' AS DateTime2), N'Programmer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (454, N'Inessa', N'Klyner', N'Bigender', N'[email protected]', N'450-710-8094', CAST(N'2013-05-27T00:00:00.0000000' AS DateTime2), N'Account Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (455, N'Issi', N'Kearford', N'Female', N'[email protected]', N'905-607-6522', CAST(N'1994-06-23T00:00:00.0000000' AS DateTime2), N'Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (456, N'Kennie', N'Bittlestone', N'Male', N'[email protected]', N'479-765-8278', CAST(N'1989-11-18T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (457, N'Jessamine', N'O''Lunny', N'Female', N'[email protected]', N'776-852-7451', CAST(N'1981-08-24T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (458, N'Gaultiero', N'Killingsworth', N'Male', N'[email protected]', N'367-432-0298', CAST(N'2012-09-25T00:00:00.0000000' AS DateTime2), N'Database Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (459, N'Cleve', N'Roskruge', N'Male', N'[email protected]', N'326-389-5274', CAST(N'2017-09-26T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (460, N'Nappie', N'Jopson', N'Male', N'[email protected]', N'293-959-1423', CAST(N'1984-07-17T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (461, N'Katusha', N'Hiom', N'Female', N'[email protected]', N'449-344-4269', CAST(N'2017-11-06T00:00:00.0000000' AS DateTime2), N'Software Consultant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (462, N'Giuditta', N'Yanuk', N'Female', N'[email protected]', N'235-438-0514', CAST(N'2018-08-20T00:00:00.0000000' AS DateTime2), N'Geologist II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (463, N'Coop', N'Danniell', N'Male', N'[email protected]', N'516-406-9437', CAST(N'2005-02-06T00:00:00.0000000' AS DateTime2), N'Structural Analysis Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (464, N'Tedmund', N'Nisen', N'Male', N'[email protected]', N'358-805-7770', CAST(N'2015-10-05T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (465, N'Bobbie', N'Barnwille', N'Male', N'[email protected]', N'857-472-5781', CAST(N'2022-11-30T00:00:00.0000000' AS DateTime2), N'Desktop Support Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (466, N'Myer', N'Rozzell', N'Male', N'[email protected]', N'433-978-7723', CAST(N'2018-08-29T00:00:00.0000000' AS DateTime2), N'Chief Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (467, N'Phaedra', N'O''Heneghan', N'Female', N'[email protected]', N'263-530-8058', CAST(N'2015-08-13T00:00:00.0000000' AS DateTime2), N'Account Representative IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (468, N'Maible', N'Riccard', N'Female', N'[email protected]', N'349-461-7335', CAST(N'2013-04-03T00:00:00.0000000' AS DateTime2), N'Desktop Support Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (469, N'Fabian', N'Welbeck', N'Male', N'[email protected]', N'792-450-0088', CAST(N'1983-08-14T00:00:00.0000000' AS DateTime2), N'Web Developer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (470, N'Shelley', N'Toquet', N'Male', N'[email protected]', N'853-640-6096', CAST(N'1986-09-16T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (471, N'Sylas', N'Mallard', N'Male', N'[email protected]', N'237-346-3033', CAST(N'1986-03-23T00:00:00.0000000' AS DateTime2), N'Financial Advisor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (472, N'Wilden', N'MacMenamy', N'Male', N'[email protected]', N'872-736-6952', CAST(N'1984-12-30T00:00:00.0000000' AS DateTime2), N'Senior Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (473, N'Gwendolyn', N'Vanelli', N'Female', N'[email protected]', N'392-793-6543', CAST(N'1982-08-11T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (474, N'Kerk', N'Leipold', N'Male', N'[email protected]', N'188-830-5681', CAST(N'1981-10-28T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (475, N'Reinald', N'Dugdale', N'Male', N'[email protected]', N'510-614-4929', CAST(N'2012-08-05T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (476, N'Huntley', N'Ashton', N'Male', N'[email protected]', N'542-560-0001', CAST(N'2010-12-10T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (477, N'Fiorenze', N'Carbry', N'Bigender', N'[email protected]', N'327-999-1126', CAST(N'1991-03-14T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (478, N'Carey', N'Cleaves', N'Male', N'[email protected]', N'192-384-5640', CAST(N'2013-06-26T00:00:00.0000000' AS DateTime2), N'Statistician III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (479, N'Sabina', N'Hugueville', N'Female', N'[email protected]', N'777-491-5694', CAST(N'2009-05-26T00:00:00.0000000' AS DateTime2), N'Health Coach II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (480, N'Stanislaus', N'Daniells', N'Male', N'[email protected]', N'660-502-7631', CAST(N'2009-05-03T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (481, N'Christen', N'Minerdo', N'Female', N'[email protected]', N'992-797-1684', CAST(N'1997-10-13T00:00:00.0000000' AS DateTime2), N'General Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (482, N'Cordy', N'Blaver', N'Male', N'[email protected]', N'590-596-7952', CAST(N'2006-02-22T00:00:00.0000000' AS DateTime2), N'Engineer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (483, N'Caspar', N'Laville', N'Male', N'[email protected]', N'816-230-9962', CAST(N'1991-04-13T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (484, N'Nananne', N'Littlefair', N'Female', N'[email protected]', N'650-222-8564', CAST(N'2003-02-03T00:00:00.0000000' AS DateTime2), N'Senior Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (485, N'Rogerio', N'Grzegorczyk', N'Male', N'[email protected]', N'510-703-7198', CAST(N'1983-08-22T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (486, N'Duane', N'Jenks', N'Male', N'[email protected]', N'566-453-5346', CAST(N'2008-11-26T00:00:00.0000000' AS DateTime2), N'Database Administrator I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (487, N'Susie', N'Willimott', N'Female', N'[email protected]', N'460-984-1489', CAST(N'1999-02-09T00:00:00.0000000' AS DateTime2), N'Web Designer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (488, N'Marillin', N'Tubby', N'Female', N'[email protected]', N'828-405-3696', CAST(N'2006-11-02T00:00:00.0000000' AS DateTime2), N'Actuary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (489, N'Aleta', N'Pickles', N'Non-binary', N'[email protected]', N'669-754-7079', CAST(N'1992-03-20T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (490, N'Myer', N'Roger', N'Male', N'[email protected]', N'245-968-1978', CAST(N'2013-10-28T00:00:00.0000000' AS DateTime2), N'Director of Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (491, N'Percy', N'Berzins', N'Male', N'[email protected]', N'373-672-1235', CAST(N'1993-06-27T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (492, N'Jillene', N'Oppie', N'Female', N'[email protected]', N'709-119-6215', CAST(N'2016-03-30T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (493, N'Esdras', N'Lamberteschi', N'Male', N'[email protected]', N'805-199-4987', CAST(N'2019-10-08T00:00:00.0000000' AS DateTime2), N'Geologist I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (494, N'Templeton', N'Backwell', N'Male', N'[email protected]', N'902-820-6951', CAST(N'1987-12-26T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (495, N'Harcourt', N'Purse', N'Male', N'[email protected]', N'220-561-2644', CAST(N'2025-02-02T00:00:00.0000000' AS DateTime2), N'Safety Technician IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (496, N'Zonda', N'Briddock', N'Genderfluid', N'[email protected]', N'382-715-4396', CAST(N'2000-01-07T00:00:00.0000000' AS DateTime2), N'Senior Developer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (497, N'Augusta', N'Wimsett', N'Female', N'[email protected]', N'380-738-2238', CAST(N'2019-05-08T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (498, N'Emilia', N'Baildon', N'Female', N'[email protected]', N'739-832-6077', CAST(N'2023-07-10T00:00:00.0000000' AS DateTime2), N'Financial Advisor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (499, N'Catha', N'Gillie', N'Female', N'[email protected]', N'292-477-9163', CAST(N'1982-12-19T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (500, N'Jolee', N'Palmby', N'Female', N'[email protected]', N'785-726-6669', CAST(N'1993-11-26T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (501, N'Kameko', N'Glackin', N'Female', N'[email protected]', N'531-302-3736', CAST(N'1993-05-11T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (502, N'Nicolle', N'Tukely', N'Female', N'[email protected]', N'305-845-3299', CAST(N'1983-03-07T00:00:00.0000000' AS DateTime2), N'Software Test Engineer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (503, N'Callean', N'Grebner', N'Male', N'[email protected]', N'163-448-4875', CAST(N'1988-08-05T00:00:00.0000000' AS DateTime2), N'Staff Scientist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (504, N'Nissa', N'Darton', N'Female', N'[email protected]', N'156-135-7689', CAST(N'2000-12-01T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (505, N'Dahlia', N'Lowin', N'Female', N'[email protected]', N'458-621-1674', CAST(N'1992-02-02T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (506, N'Daniella', N'Lantiff', N'Genderfluid', N'[email protected]', N'893-970-7429', CAST(N'1984-12-17T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (507, N'Inglebert', N'Ionnidis', N'Male', N'[email protected]', N'273-290-3903', CAST(N'2014-03-18T00:00:00.0000000' AS DateTime2), N'Biostatistician III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (508, N'Bertina', N'Hamblin', N'Genderqueer', N'[email protected]', N'323-138-5575', CAST(N'2012-06-06T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (509, N'Lynnell', N'Cattemull', N'Female', N'[email protected]', N'202-606-2764', CAST(N'2008-06-13T00:00:00.0000000' AS DateTime2), N'Programmer Analyst II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (510, N'Eba', N'Shilburne', N'Female', N'[email protected]', N'211-333-5526', CAST(N'2021-07-25T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (511, N'Blaine', N'Faber', N'Male', N'[email protected]', N'253-619-2064', CAST(N'2003-11-28T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (512, N'Chiquita', N'Cranke', N'Female', N'[email protected]', N'135-634-0783', CAST(N'1992-07-14T00:00:00.0000000' AS DateTime2), N'General Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (513, N'Fabiano', N'McFarland', N'Male', N'[email protected]', N'823-905-3278', CAST(N'1983-06-17T00:00:00.0000000' AS DateTime2), N'Recruiter')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (514, N'Yul', N'Trevance', N'Male', N'[email protected]', N'400-314-0539', CAST(N'2021-03-23T00:00:00.0000000' AS DateTime2), N'Actuary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (515, N'Reena', N'Beller', N'Female', N'[email protected]', N'194-500-5284', CAST(N'1984-12-12T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (516, N'Doe', N'Snell', N'Female', N'[email protected]', N'953-491-2815', CAST(N'1991-12-30T00:00:00.0000000' AS DateTime2), N'Actuary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (517, N'Nikola', N'Sambeck', N'Male', N'[email protected]', N'205-355-6750', CAST(N'2016-09-26T00:00:00.0000000' AS DateTime2), N'Research Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (518, N'Alie', N'Grzes', N'Female', N'[email protected]', N'328-920-9442', CAST(N'1988-02-11T00:00:00.0000000' AS DateTime2), N'Structural Analysis Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (519, N'Benni', N'Judgkins', N'Female', N'[email protected]', N'535-191-4288', CAST(N'1986-05-04T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (520, N'Piotr', N'O''Lagen', N'Male', N'[email protected]', N'209-563-0186', CAST(N'2015-03-08T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (521, N'Danielle', N'Doorbar', N'Female', N'[email protected]', N'879-164-5851', CAST(N'2007-07-13T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (522, N'Brittaney', N'Knightsbridge', N'Female', N'[email protected]', N'326-643-2078', CAST(N'1997-07-01T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (523, N'Nananne', N'Yanele', N'Female', N'[email protected]', N'236-325-2151', CAST(N'1987-02-27T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (524, N'Ashlin', N'Swindall', N'Male', N'[email protected]', N'830-940-3044', CAST(N'2024-05-19T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (525, N'Koral', N'Greyes', N'Female', N'[email protected]', N'801-492-2602', CAST(N'2013-11-02T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (526, N'Pavla', N'Thynne', N'Female', N'[email protected]', N'535-796-2199', CAST(N'1993-11-04T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (527, N'Odetta', N'Raleston', N'Female', N'[email protected]', N'370-351-6889', CAST(N'2017-10-03T00:00:00.0000000' AS DateTime2), N'Pharmacist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (528, N'Tedra', N'Coules', N'Female', N'[email protected]', N'276-375-3677', CAST(N'1989-05-04T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (529, N'Romola', N'Holton', N'Female', N'[email protected]', N'667-390-0294', CAST(N'2005-09-24T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (530, N'Edwin', N'Gossan', N'Male', N'[email protected]', N'619-710-9690', CAST(N'2021-01-07T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (531, N'Tripp', N'Ley', N'Male', N'[email protected]', N'390-351-7112', CAST(N'1987-06-08T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (532, N'Dory', N'Beldon', N'Male', N'[email protected]', N'263-612-4900', CAST(N'1994-02-26T00:00:00.0000000' AS DateTime2), N'General Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (533, N'Barbie', N'Seaman', N'Female', N'[email protected]', N'385-293-3380', CAST(N'2023-04-28T00:00:00.0000000' AS DateTime2), N'Health Coach III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (534, N'Yoshiko', N'Baurerich', N'Female', N'[email protected]', N'999-779-1151', CAST(N'1983-07-20T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (535, N'Aldwin', N'Childs', N'Male', N'[email protected]', N'142-769-7201', CAST(N'2002-05-06T00:00:00.0000000' AS DateTime2), N'Compensation Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (536, N'Adriena', N'Wardlaw', N'Female', N'[email protected]', N'737-241-1064', CAST(N'2015-07-01T00:00:00.0000000' AS DateTime2), N'Engineer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (537, N'Aurel', N'Bassilashvili', N'Female', N'[email protected]', N'576-138-9095', CAST(N'2016-11-06T00:00:00.0000000' AS DateTime2), N'Geologist II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (538, N'Roxi', N'McCourtie', N'Female', N'[email protected]', N'906-830-1872', CAST(N'2005-09-11T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (539, N'Camella', N'Glowacki', N'Female', N'[email protected]', N'444-700-8190', CAST(N'2013-07-25T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (540, N'Keelia', N'Plaskett', N'Female', N'[email protected]', N'986-684-3072', CAST(N'2008-07-06T00:00:00.0000000' AS DateTime2), N'Web Designer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (541, N'Garrick', N'Adiscot', N'Male', N'[email protected]', N'709-457-0513', CAST(N'2009-04-01T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (542, N'Yank', N'Zanettini', N'Male', N'[email protected]', N'341-283-8377', CAST(N'1988-11-20T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (543, N'Isaiah', N'Jefford', N'Male', N'[email protected]', N'750-754-5262', CAST(N'2020-12-03T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (544, N'Troy', N'Tichner', N'Male', N'[email protected]', N'244-530-1953', CAST(N'2004-06-02T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (545, N'Cristine', N'Eve', N'Female', N'[email protected]', N'614-796-0553', CAST(N'1998-08-07T00:00:00.0000000' AS DateTime2), N'Physical Therapy Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (546, N'Rob', N'Ferrarotti', N'Bigender', N'[email protected]', N'334-991-2717', CAST(N'2000-04-28T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (547, N'Benjy', N'MacLeod', N'Male', N'[email protected]', N'144-116-8996', CAST(N'1987-06-08T00:00:00.0000000' AS DateTime2), N'Accountant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (548, N'Wilmar', N'Henkmann', N'Agender', N'[email protected]', N'962-382-8535', CAST(N'2009-06-29T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (549, N'Jeanette', N'Foltin', N'Female', N'[email protected]', N'561-958-9007', CAST(N'2008-10-18T00:00:00.0000000' AS DateTime2), N'Analyst Programmer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (550, N'Conny', N'Handes', N'Female', N'[email protected]', N'570-523-1247', CAST(N'2000-05-05T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (551, N'Goldina', N'Witherington', N'Female', N'[email protected]', N'348-181-0257', CAST(N'2002-12-12T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (552, N'Helge', N'Atter', N'Female', N'[email protected]', N'524-973-2184', CAST(N'2008-06-05T00:00:00.0000000' AS DateTime2), N'General Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (553, N'Dusty', N'Saffer', N'Female', N'[email protected]', N'352-827-9408', CAST(N'1983-10-05T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (554, N'Dalis', N'Alasdair', N'Male', N'[email protected]', N'363-774-9165', CAST(N'2015-07-22T00:00:00.0000000' AS DateTime2), N'Administrative Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (555, N'Tarrance', N'Jeremiah', N'Male', N'[email protected]', N'746-254-4332', CAST(N'1980-12-20T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (556, N'Addison', N'Butterfint', N'Male', N'[email protected]', N'197-521-6174', CAST(N'2023-04-01T00:00:00.0000000' AS DateTime2), N'Marketing Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (557, N'Cleo', N'Bartak', N'Female', N'[email protected]', N'756-560-7852', CAST(N'1991-09-07T00:00:00.0000000' AS DateTime2), N'Software Test Engineer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (558, N'Cheslie', N'McFie', N'Female', N'[email protected]', N'599-988-6321', CAST(N'2007-09-16T00:00:00.0000000' AS DateTime2), N'Geologist II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (559, N'Chicky', N'Sails', N'Female', N'[email protected]', N'503-490-9504', CAST(N'1981-09-20T00:00:00.0000000' AS DateTime2), N'Desktop Support Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (560, N'Nessy', N'Varney', N'Female', N'[email protected]', N'900-830-0591', CAST(N'1987-09-07T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (561, N'Jammal', N'Slamaker', N'Male', N'[email protected]', N'701-138-7637', CAST(N'2001-09-26T00:00:00.0000000' AS DateTime2), N'Desktop Support Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (562, N'Shamus', N'Farquharson', N'Male', N'[email protected]', N'633-842-6053', CAST(N'2005-12-27T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (563, N'Anatola', N'Abbots', N'Female', N'[email protected]', N'260-925-9572', CAST(N'2008-06-01T00:00:00.0000000' AS DateTime2), N'Director of Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (564, N'Shelden', N'Pincked', N'Male', N'[email protected]', N'540-461-1730', CAST(N'2018-09-23T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (565, N'Denney', N'Marquand', N'Male', N'[email protected]', N'999-466-3667', CAST(N'2021-12-19T00:00:00.0000000' AS DateTime2), N'Web Developer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (566, N'Winnie', N'Paolazzi', N'Female', N'[email protected]', N'370-724-1629', CAST(N'1990-05-17T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (567, N'Nonna', N'Crispin', N'Female', N'[email protected]', N'498-794-6035', CAST(N'2004-07-27T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (568, N'Byram', N'Jerrans', N'Male', N'[email protected]', N'146-955-1129', CAST(N'1992-05-27T00:00:00.0000000' AS DateTime2), N'General Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (569, N'Ezechiel', N'Lowden', N'Male', N'[email protected]', N'994-886-3190', CAST(N'2007-03-17T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (570, N'Stella', N'Kenworthey', N'Female', N'[email protected]', N'298-497-0718', CAST(N'2020-04-05T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (571, N'Mayne', N'Mathevon', N'Male', N'[email protected]', N'528-656-8591', CAST(N'1991-01-27T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (572, N'Clim', N'Ketchaside', N'Male', N'[email protected]', N'377-722-6534', CAST(N'2021-07-22T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (573, N'Kayley', N'Evemy', N'Bigender', N'[email protected]', N'399-795-5907', CAST(N'2020-12-11T00:00:00.0000000' AS DateTime2), N'VP Quality Control')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (574, N'Sibby', N'Le Merchant', N'Female', N'[email protected]', N'948-531-5554', CAST(N'1997-02-28T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (575, N'Griff', N'McIlharga', N'Male', N'[email protected]', N'227-713-9984', CAST(N'2008-01-03T00:00:00.0000000' AS DateTime2), N'Quality Control Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (576, N'Tonnie', N'Blaik', N'Male', N'[email protected]', N'609-182-4578', CAST(N'2017-08-21T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (577, N'Benedetto', N'Bowller', N'Male', N'[email protected]', N'268-990-9706', CAST(N'1996-07-10T00:00:00.0000000' AS DateTime2), N'Accountant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (578, N'Xymenes', N'Rapson', N'Male', N'[email protected]', N'441-462-9141', CAST(N'1990-03-16T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (579, N'Cordy', N'Hinzer', N'Female', N'[email protected]', N'145-791-0635', CAST(N'2013-01-26T00:00:00.0000000' AS DateTime2), N'Developer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (580, N'Trey', N'Kerins', N'Male', N'[email protected]', N'660-477-3649', CAST(N'2002-06-08T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (581, N'Pamelina', N'Wabey', N'Non-binary', N'[email protected]', N'878-419-6528', CAST(N'1998-02-05T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (582, N'Ray', N'Perrat', N'Male', N'[email protected]', N'226-858-0380', CAST(N'2014-05-23T00:00:00.0000000' AS DateTime2), N'Assistant Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (583, N'Dahlia', N'Mutlow', N'Female', N'[email protected]', N'258-459-5708', CAST(N'2024-03-19T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (584, N'Bobinette', N'Lace', N'Female', N'[email protected]', N'868-998-1072', CAST(N'2011-03-10T00:00:00.0000000' AS DateTime2), N'Systems Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (585, N'Merline', N'Leighfield', N'Genderqueer', N'[email protected]', N'514-215-7620', CAST(N'2007-03-21T00:00:00.0000000' AS DateTime2), N'Nurse Practicioner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (586, N'Jacob', N'Zemler', N'Male', N'[email protected]', N'187-886-5679', CAST(N'1998-03-22T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (587, N'Dieter', N'Golly', N'Male', N'[email protected]', N'555-823-6774', CAST(N'2017-07-06T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (588, N'Charisse', N'Climpson', N'Female', N'[email protected]', N'421-562-6827', CAST(N'2024-08-12T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (589, N'Shell', N'Cordrey', N'Female', N'[email protected]', N'175-820-0009', CAST(N'1983-06-07T00:00:00.0000000' AS DateTime2), N'Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (590, N'Rubi', N'Wabey', N'Bigender', N'[email protected]', N'702-163-8007', CAST(N'1988-01-17T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (591, N'Bevan', N'Northover', N'Male', N'[email protected]', N'785-283-9103', CAST(N'2015-10-15T00:00:00.0000000' AS DateTime2), N'Software Test Engineer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (592, N'Vaughn', N'Fullegar', N'Male', N'[email protected]', N'209-699-8409', CAST(N'2018-07-14T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (593, N'Brock', N'Burgis', N'Male', N'[email protected]', N'562-500-4046', CAST(N'2024-09-27T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (594, N'Mile', N'Bearcroft', N'Male', N'[email protected]', N'990-983-4558', CAST(N'2009-09-29T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (595, N'Tamarah', N'Madle', N'Female', N'[email protected]', N'136-839-9345', CAST(N'2015-05-05T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (596, N'Dacie', N'Matuszkiewicz', N'Female', N'[email protected]', N'722-151-8930', CAST(N'2011-02-26T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (597, N'Elmer', N'Wynrahame', N'Male', N'[email protected]', N'312-102-2565', CAST(N'2023-08-23T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (598, N'Nicolette', N'Taysbil', N'Female', N'[email protected]', N'798-963-3870', CAST(N'1984-07-12T00:00:00.0000000' AS DateTime2), N'Staff Accountant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (599, N'Mathias', N'Lindholm', N'Male', N'[email protected]', N'249-537-9814', CAST(N'1988-01-24T00:00:00.0000000' AS DateTime2), N'Design Engineer')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (600, N'Denni', N'Pill', N'Female', N'[email protected]', N'603-751-6603', CAST(N'2022-12-31T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (601, N'Jarid', N'Rous', N'Male', N'[email protected]', N'798-729-7131', CAST(N'2001-02-19T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (602, N'Amabelle', N'Clarey', N'Female', N'[email protected]', N'916-190-5256', CAST(N'2010-11-30T00:00:00.0000000' AS DateTime2), N'Programmer Analyst III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (603, N'Wittie', N'Thirsk', N'Non-binary', N'[email protected]', N'630-497-0690', CAST(N'1993-06-16T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (604, N'Madeleine', N'Rathbourne', N'Female', N'[email protected]', N'567-275-4598', CAST(N'1990-03-01T00:00:00.0000000' AS DateTime2), N'General Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (605, N'Bernhard', N'Symones', N'Male', N'[email protected]', N'849-942-8499', CAST(N'2004-11-16T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (606, N'Ellen', N'Meeny', N'Female', N'[email protected]', N'683-191-6928', CAST(N'1991-08-13T00:00:00.0000000' AS DateTime2), N'Structural Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (607, N'Saleem', N'Hammatt', N'Male', N'[email protected]', N'587-501-8169', CAST(N'2001-01-11T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (608, N'Wilfred', N'Eymer', N'Male', N'[email protected]', N'932-989-2214', CAST(N'2017-01-18T00:00:00.0000000' AS DateTime2), N'Media Manager IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (609, N'Noll', N'Christoffersen', N'Agender', N'[email protected]', N'589-444-5211', CAST(N'1999-10-06T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (610, N'Rodney', N'Mercer', N'Male', N'[email protected]', N'339-192-3565', CAST(N'1983-09-02T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (611, N'Pearce', N'Verheijden', N'Male', N'[email protected]', N'770-265-6019', CAST(N'2014-12-10T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (612, N'Waylan', N'Splevin', N'Male', N'[email protected]', N'930-887-2996', CAST(N'1999-11-12T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (613, N'Emelda', N'Bartoli', N'Female', N'[email protected]', N'446-131-3897', CAST(N'2019-02-09T00:00:00.0000000' AS DateTime2), N'Accountant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (614, N'Jermayne', N'Peres', N'Male', N'[email protected]', N'175-318-5382', CAST(N'2011-01-13T00:00:00.0000000' AS DateTime2), N'Recruiter')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (615, N'Glori', N'Brownsett', N'Female', N'[email protected]', N'782-904-0659', CAST(N'2000-07-30T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (616, N'Frasier', N'Rogerot', N'Male', N'[email protected]', N'425-794-1827', CAST(N'1995-11-25T00:00:00.0000000' AS DateTime2), N'Compensation Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (617, N'Dunc', N'Sturge', N'Male', N'[email protected]', N'689-947-2139', CAST(N'2017-09-06T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (618, N'Lennard', N'Dorking', N'Male', N'[email protected]', N'270-174-7039', CAST(N'2021-01-27T00:00:00.0000000' AS DateTime2), N'Senior Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (619, N'Dorisa', N'Whitewood', N'Female', N'[email protected]', N'178-486-9201', CAST(N'1995-02-21T00:00:00.0000000' AS DateTime2), N'Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (620, N'Christel', N'Kingzeth', N'Genderqueer', N'[email protected]', N'747-821-5687', CAST(N'2009-11-25T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (621, N'Lusa', N'Cranmore', N'Female', N'[email protected]', N'730-183-7031', CAST(N'2025-08-15T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (622, N'Vanna', N'Mitchelmore', N'Non-binary', N'[email protected]', N'965-700-2286', CAST(N'2006-06-18T00:00:00.0000000' AS DateTime2), N'Web Developer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (623, N'Mab', N'Hinzer', N'Non-binary', N'[email protected]', N'260-233-4230', CAST(N'1982-06-22T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (624, N'Kial', N'Trapp', N'Female', N'[email protected]', N'211-977-5716', CAST(N'2004-01-23T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (625, N'Syman', N'Allery', N'Male', N'[email protected]', N'857-500-7444', CAST(N'2008-09-25T00:00:00.0000000' AS DateTime2), N'Assistant Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (626, N'Lucinda', N'Duplain', N'Female', N'[email protected]', N'130-403-6133', CAST(N'1988-04-05T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (627, N'Denise', N'Crepin', N'Female', N'[email protected]', N'107-635-6829', CAST(N'1990-11-30T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (628, N'Roseanne', N'Broadberrie', N'Female', N'[email protected]', N'764-793-3280', CAST(N'2005-04-24T00:00:00.0000000' AS DateTime2), N'Accountant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (629, N'Gayler', N'Glencros', N'Male', N'[email protected]', N'166-481-0272', CAST(N'1984-03-14T00:00:00.0000000' AS DateTime2), N'Senior Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (630, N'Fanni', N'Whiteley', N'Female', N'[email protected]', N'690-997-6359', CAST(N'1983-07-28T00:00:00.0000000' AS DateTime2), N'Programmer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (631, N'Winny', N'Millard', N'Male', N'[email protected]', N'253-989-7081', CAST(N'1983-02-19T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (632, N'Wilburt', N'Crisell', N'Male', N'[email protected]', N'552-623-9892', CAST(N'2018-06-08T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (633, N'Anneliese', N'Brady', N'Female', N'[email protected]', N'454-405-8657', CAST(N'2019-04-25T00:00:00.0000000' AS DateTime2), N'Senior Developer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (634, N'Clemmie', N'Lukasen', N'Male', N'[email protected]', N'971-821-4074', CAST(N'2001-08-19T00:00:00.0000000' AS DateTime2), N'Statistician I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (635, N'Darleen', N'Shalloo', N'Female', N'[email protected]', N'277-591-5360', CAST(N'2001-04-19T00:00:00.0000000' AS DateTime2), N'Web Developer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (636, N'Shannan', N'Twohig', N'Male', N'[email protected]', N'829-487-4320', CAST(N'1988-07-02T00:00:00.0000000' AS DateTime2), N'Office Assistant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (637, N'Karlie', N'Santacrole', N'Female', N'[email protected]', N'328-194-7354', CAST(N'1986-09-10T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (638, N'Franklyn', N'Dominici', N'Male', N'[email protected]', N'662-267-0546', CAST(N'2009-04-20T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (639, N'Bogey', N'Penas', N'Male', N'[email protected]', N'959-523-3115', CAST(N'1983-02-21T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (640, N'Chaddy', N'Muehle', N'Male', N'[email protected]', N'618-535-4893', CAST(N'2019-08-12T00:00:00.0000000' AS DateTime2), N'Systems Administrator IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (641, N'Mei', N'Verlander', N'Female', N'[email protected]', N'340-918-9169', CAST(N'2013-08-29T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (642, N'Christie', N'Buddleigh', N'Male', N'[email protected]', N'760-914-3052', CAST(N'1982-06-04T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (643, N'Judy', N'Brandli', N'Female', N'[email protected]', N'379-519-4658', CAST(N'1995-04-14T00:00:00.0000000' AS DateTime2), N'Programmer Analyst II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (644, N'Gerianna', N'MacPhail', N'Female', N'[email protected]', N'895-642-4649', CAST(N'1986-01-03T00:00:00.0000000' AS DateTime2), N'Staff Accountant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (645, N'Darrell', N'Kleint', N'Male', N'[email protected]', N'426-368-8694', CAST(N'1982-05-26T00:00:00.0000000' AS DateTime2), N'Pharmacist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (646, N'Morgen', N'Peake', N'Female', N'[email protected]', N'898-312-3246', CAST(N'2020-04-26T00:00:00.0000000' AS DateTime2), N'Dental Hygienist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (647, N'Jo', N'Rushby', N'Agender', N'[email protected]', N'935-347-1966', CAST(N'1991-06-20T00:00:00.0000000' AS DateTime2), N'Account Representative III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (648, N'Roselle', N'Crowden', N'Female', N'[email protected]', N'663-168-4404', CAST(N'2005-04-18T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (649, N'Kerry', N'Berdale', N'Male', N'[email protected]', N'154-579-0587', CAST(N'2005-05-15T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (650, N'Lexis', N'Kitchenside', N'Non-binary', N'[email protected]', N'627-288-0582', CAST(N'1990-06-28T00:00:00.0000000' AS DateTime2), N'Assistant Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (651, N'Vinny', N'Kamenar', N'Male', N'[email protected]', N'693-430-0624', CAST(N'2004-03-10T00:00:00.0000000' AS DateTime2), N'Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (652, N'Jasmin', N'Elderidge', N'Female', N'[email protected]', N'759-881-6808', CAST(N'2014-11-09T00:00:00.0000000' AS DateTime2), N'VP Quality Control')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (653, N'Ileana', N'Gibbins', N'Female', N'[email protected]', N'620-172-0591', CAST(N'1991-08-27T00:00:00.0000000' AS DateTime2), N'Physical Therapy Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (654, N'Julie', N'Sidney', N'Male', N'[email protected]', N'671-787-4721', CAST(N'2020-04-06T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (655, N'Brina', N'Derobert', N'Female', N'[email protected]', N'410-263-8751', CAST(N'2025-03-12T00:00:00.0000000' AS DateTime2), N'Software Test Engineer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (656, N'Ana', N'Bayman', N'Female', N'[email protected]', N'314-950-8566', CAST(N'2026-02-01T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (657, N'Terrel', N'Elgram', N'Male', N'[email protected]', N'915-165-1337', CAST(N'2007-06-28T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (658, N'Enrique', N'Flobert', N'Male', N'[email protected]', N'505-307-6312', CAST(N'2000-07-25T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (659, N'Harlin', N'Stiger', N'Male', N'[email protected]', N'657-627-4969', CAST(N'2009-08-20T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (660, N'Lucinda', N'Lethbury', N'Female', N'[email protected]', N'409-667-1235', CAST(N'2007-05-15T00:00:00.0000000' AS DateTime2), N'Database Administrator I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (661, N'Lavina', N'Sorrie', N'Female', N'[email protected]', N'996-772-0425', CAST(N'1990-09-16T00:00:00.0000000' AS DateTime2), N'Chief Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (662, N'Olia', N'Sawle', N'Female', N'[email protected]', N'541-175-0408', CAST(N'2010-04-13T00:00:00.0000000' AS DateTime2), N'Web Developer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (663, N'Jacky', N'Czyz', N'Male', N'[email protected]', N'718-234-8605', CAST(N'2013-09-08T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (664, N'Wainwright', N'Baldocci', N'Male', N'[email protected]', N'231-157-2602', CAST(N'2004-09-22T00:00:00.0000000' AS DateTime2), N'Business Systems Development Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (665, N'Valentina', N'Giaomozzo', N'Female', N'[email protected]', N'183-519-1843', CAST(N'2007-05-14T00:00:00.0000000' AS DateTime2), N'Director of Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (666, N'Jenni', N'Dealy', N'Female', N'[email protected]', N'103-755-5832', CAST(N'2002-02-05T00:00:00.0000000' AS DateTime2), N'Director of Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (667, N'Alessandra', N'Dannett', N'Female', N'[email protected]', N'274-137-8622', CAST(N'2002-09-22T00:00:00.0000000' AS DateTime2), N'Software Engineer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (668, N'Farlee', N'Dimic', N'Male', N'[email protected]', N'225-780-6821', CAST(N'2019-02-04T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (669, N'Brose', N'Rawstorn', N'Male', N'[email protected]', N'896-696-0807', CAST(N'1999-07-21T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (670, N'Winonah', N'Zorzini', N'Female', N'[email protected]', N'356-375-8010', CAST(N'1994-03-27T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (671, N'Guthry', N'McCard', N'Male', N'[email protected]', N'699-387-6118', CAST(N'2012-04-06T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (672, N'Allard', N'Souza', N'Male', N'[email protected]', N'483-338-4077', CAST(N'1984-07-08T00:00:00.0000000' AS DateTime2), N'Executive Secretary')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (673, N'Katha', N'Vanichkin', N'Female', N'[email protected]', N'323-838-2612', CAST(N'2012-07-22T00:00:00.0000000' AS DateTime2), N'Structural Analysis Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (674, N'Peyter', N'Hubatsch', N'Male', N'[email protected]', N'460-779-7380', CAST(N'2015-08-12T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (675, N'Tucker', N'De Launde', N'Male', N'[email protected]', N'857-124-0594', CAST(N'2017-01-24T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (676, N'Kingston', N'Shepheard', N'Male', N'[email protected]', N'587-725-1757', CAST(N'1995-10-22T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (677, N'Sayres', N'Corro', N'Male', N'[email protected]', N'587-208-0029', CAST(N'2007-06-29T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (678, N'Byram', N'Koeppe', N'Male', N'[email protected]', N'780-783-9817', CAST(N'2021-01-14T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (679, N'Alphonse', N'Thickett', N'Male', N'[email protected]', N'893-295-1670', CAST(N'2021-08-02T00:00:00.0000000' AS DateTime2), N'Safety Technician III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (680, N'Garfield', N'McGettrick', N'Male', N'[email protected]', N'297-931-9523', CAST(N'2014-06-07T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (681, N'Kristopher', N'Whiley', N'Male', N'[email protected]', N'225-368-1383', CAST(N'2009-10-04T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (682, N'Humphrey', N'Suttie', N'Male', N'[email protected]', N'251-254-3362', CAST(N'1997-02-01T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (683, N'Alysa', N'Buttriss', N'Female', N'[email protected]', N'480-671-2683', CAST(N'1994-09-29T00:00:00.0000000' AS DateTime2), N'Software Engineer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (684, N'Marian', N'McGarrie', N'Female', N'[email protected]', N'434-513-8536', CAST(N'1985-10-25T00:00:00.0000000' AS DateTime2), N'Analyst Programmer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (685, N'Artur', N'Barthot', N'Male', N'[email protected]', N'470-654-8781', CAST(N'1994-10-27T00:00:00.0000000' AS DateTime2), N'Marketing Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (686, N'Gregor', N'Callis', N'Male', N'[email protected]', N'867-211-8715', CAST(N'2020-07-13T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (687, N'Faunie', N'Pell', N'Female', N'[email protected]', N'794-741-2383', CAST(N'2025-09-02T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (688, N'Patience', N'Bains', N'Female', N'[email protected]', N'517-684-0573', CAST(N'2020-05-30T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (689, N'Elyssa', N'Fauguel', N'Genderfluid', N'[email protected]', N'553-817-5589', CAST(N'2016-01-29T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (690, N'Davida', N'Summerscales', N'Female', N'[email protected]', N'170-897-6231', CAST(N'1992-05-12T00:00:00.0000000' AS DateTime2), N'Senior Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (691, N'Orson', N'Way', N'Male', N'[email protected]', N'941-655-1784', CAST(N'1989-05-03T00:00:00.0000000' AS DateTime2), N'Programmer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (692, N'Vonnie', N'Bugden', N'Female', N'[email protected]', N'645-307-5119', CAST(N'2025-05-26T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (693, N'Aurelie', N'Weavill', N'Non-binary', N'[email protected]', N'234-612-5544', CAST(N'1986-07-30T00:00:00.0000000' AS DateTime2), N'Financial Advisor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (694, N'Deonne', N'Dotterill', N'Female', N'[email protected]', N'450-236-4322', CAST(N'2022-01-23T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (695, N'Cherlyn', N'Abrahmovici', N'Female', N'[email protected]', N'700-368-6903', CAST(N'2015-09-07T00:00:00.0000000' AS DateTime2), N'Physical Therapy Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (696, N'My', N'Yglesia', N'Male', N'[email protected]', N'786-740-2219', CAST(N'2000-01-11T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (697, N'Kakalina', N'Monaghan', N'Female', N'[email protected]', N'237-124-1381', CAST(N'1982-11-18T00:00:00.0000000' AS DateTime2), N'Geologist II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (698, N'Milicent', N'Boone', N'Female', N'[email protected]', N'542-326-5396', CAST(N'2019-04-20T00:00:00.0000000' AS DateTime2), N'Senior Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (699, N'Teddi', N'Brahm', N'Female', N'[email protected]', N'218-639-8201', CAST(N'1986-09-29T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (700, N'Pancho', N'Sexten', N'Male', N'[email protected]', N'517-731-2257', CAST(N'2019-08-30T00:00:00.0000000' AS DateTime2), N'Biostatistician III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (701, N'Sargent', N'Tyson', N'Male', N'[email protected]', N'811-582-6068', CAST(N'1995-04-08T00:00:00.0000000' AS DateTime2), N'VP Quality Control')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (702, N'Kort', N'Bampton', N'Male', N'[email protected]', N'646-226-5017', CAST(N'1984-11-14T00:00:00.0000000' AS DateTime2), N'Recruiter')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (703, N'Ann-marie', N'Kerfoot', N'Female', N'[email protected]', N'541-435-7947', CAST(N'1987-12-05T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (704, N'Delmore', N'Nalder', N'Genderqueer', N'[email protected]', N'233-212-6609', CAST(N'2001-11-02T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (705, N'Salaidh', N'Verni', N'Female', N'[email protected]', N'298-932-8472', CAST(N'1994-03-23T00:00:00.0000000' AS DateTime2), N'Web Developer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (706, N'Arlyne', N'Chiddy', N'Genderqueer', N'[email protected]', N'859-538-9039', CAST(N'2003-08-01T00:00:00.0000000' AS DateTime2), N'Paralegal')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (707, N'Laughton', N'Mulford', N'Male', N'[email protected]', N'671-851-4711', CAST(N'1996-07-05T00:00:00.0000000' AS DateTime2), N'Automation Specialist I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (708, N'Zared', N'Pariss', N'Male', N'[email protected]', N'402-159-8252', CAST(N'2021-02-28T00:00:00.0000000' AS DateTime2), N'VP Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (709, N'Malena', N'Gobbet', N'Bigender', N'[email protected]', N'825-255-2892', CAST(N'2013-09-04T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (710, N'Kristofor', N'Davey', N'Male', N'[email protected]', N'599-331-6993', CAST(N'2014-09-12T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (711, N'Page', N'Billows', N'Male', N'[email protected]', N'108-843-9683', CAST(N'1988-08-15T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (712, N'Linoel', N'Northen', N'Male', N'[email protected]', N'345-259-3297', CAST(N'1982-09-13T00:00:00.0000000' AS DateTime2), N'Programmer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (713, N'Skylar', N'Gronav', N'Male', N'[email protected]', N'780-571-0629', CAST(N'1981-12-25T00:00:00.0000000' AS DateTime2), N'Automation Specialist IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (714, N'Nelie', N'Draude', N'Polygender', N'[email protected]', N'698-114-4767', CAST(N'1987-11-07T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (715, N'Charlot', N'Ryland', N'Female', N'[email protected]', N'816-120-4349', CAST(N'1992-11-12T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (716, N'Clementius', N'Alder', N'Male', N'[email protected]', N'773-912-6722', CAST(N'2022-08-12T00:00:00.0000000' AS DateTime2), N'Statistician III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (717, N'Dynah', N'Marfell', N'Bigender', N'[email protected]', N'830-920-2001', CAST(N'2025-12-25T00:00:00.0000000' AS DateTime2), N'Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (718, N'Eustace', N'Meatcher', N'Male', N'[email protected]', N'866-438-9439', CAST(N'2013-11-29T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (719, N'Obidiah', N'Pieterick', N'Male', N'[email protected]', N'709-991-7113', CAST(N'2002-11-13T00:00:00.0000000' AS DateTime2), N'Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (720, N'Broderick', N'Mechan', N'Male', N'[email protected]', N'227-868-0721', CAST(N'2007-02-12T00:00:00.0000000' AS DateTime2), N'Help Desk Technician')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (721, N'Robbie', N'Caras', N'Male', N'[email protected]', N'695-157-5059', CAST(N'1986-05-30T00:00:00.0000000' AS DateTime2), N'Staff Accountant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (722, N'Trefor', N'Kleszinski', N'Male', N'[email protected]', N'645-727-5148', CAST(N'2000-04-18T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (723, N'Kory', N'Southcoat', N'Male', N'[email protected]', N'975-818-2675', CAST(N'1983-01-10T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (724, N'Tessy', N'Flecknoe', N'Agender', N'[email protected]', N'724-103-3559', CAST(N'2016-07-30T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (725, N'Standford', N'Brandoni', N'Male', N'[email protected]', N'238-772-7720', CAST(N'1994-04-21T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (726, N'Hugh', N'Birnie', N'Male', N'[email protected]', N'780-972-3321', CAST(N'1995-09-20T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (727, N'Bellanca', N'Blankman', N'Female', N'[email protected]', N'361-612-4739', CAST(N'1983-09-28T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (728, N'Osgood', N'Tolworthie', N'Male', N'[email protected]', N'379-609-9615', CAST(N'2008-11-20T00:00:00.0000000' AS DateTime2), N'Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (729, N'Zared', N'MacGruer', N'Male', N'[email protected]', N'115-489-0514', CAST(N'2024-07-26T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (730, N'Christos', N'Grioli', N'Male', N'[email protected]', N'644-176-6766', CAST(N'1989-11-17T00:00:00.0000000' AS DateTime2), N'Marketing Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (731, N'King', N'Snelgar', N'Male', N'[email protected]', N'582-565-7947', CAST(N'2019-07-07T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (732, N'Matthus', N'Pratte', N'Male', N'[email protected]', N'638-914-0565', CAST(N'1984-08-30T00:00:00.0000000' AS DateTime2), N'Software Consultant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (733, N'Stoddard', N'Hartly', N'Female', N'[email protected]', N'563-562-5897', CAST(N'2021-10-20T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (734, N'Vonnie', N'Sitwell', N'Female', N'[email protected]', N'963-761-3733', CAST(N'1981-09-01T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (735, N'Tamma', N'Dixon', N'Female', N'[email protected]', N'690-117-9987', CAST(N'2000-06-18T00:00:00.0000000' AS DateTime2), N'Developer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (736, N'Bentley', N'Mynett', N'Male', N'[email protected]', N'789-220-1917', CAST(N'2023-05-16T00:00:00.0000000' AS DateTime2), N'Physical Therapy Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (737, N'Cindy', N'McLenahan', N'Female', N'[email protected]', N'326-336-4898', CAST(N'2011-07-29T00:00:00.0000000' AS DateTime2), N'Clinical Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (738, N'Melina', N'Miebes', N'Female', N'[email protected]', N'967-786-9254', CAST(N'1983-06-27T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (739, N'Karylin', N'Aronovitz', N'Female', N'[email protected]', N'684-359-6082', CAST(N'2011-02-12T00:00:00.0000000' AS DateTime2), N'Accountant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (740, N'Ardath', N'Duckinfield', N'Female', N'[email protected]', N'341-423-8195', CAST(N'2011-11-09T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (741, N'Gwyneth', N'Farebrother', N'Female', N'[email protected]', N'552-666-4751', CAST(N'1989-12-10T00:00:00.0000000' AS DateTime2), N'Account Representative III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (742, N'Murdock', N'Mueller', N'Male', N'[email protected]', N'802-181-7017', CAST(N'2023-06-01T00:00:00.0000000' AS DateTime2), N'Automation Specialist III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (743, N'Pauli', N'Baldwin', N'Female', N'[email protected]', N'562-925-1093', CAST(N'2023-09-17T00:00:00.0000000' AS DateTime2), N'Statistician II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (744, N'Madonna', N'Ruppeli', N'Female', N'[email protected]', N'459-549-0271', CAST(N'2022-06-03T00:00:00.0000000' AS DateTime2), N'Software Test Engineer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (745, N'Sinclair', N'Ineson', N'Male', N'[email protected]', N'137-623-9412', CAST(N'2006-06-14T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (746, N'Karen', N'Stanluck', N'Genderfluid', N'[email protected]', N'271-499-7114', CAST(N'2002-06-08T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (747, N'Arley', N'Meiklejohn', N'Male', N'[email protected]', N'244-877-9279', CAST(N'2004-10-03T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (748, N'Terrel', N'Stebbings', N'Male', N'[email protected]', N'347-281-5832', CAST(N'2009-06-11T00:00:00.0000000' AS DateTime2), N'Senior Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (749, N'Baird', N'Blackesland', N'Male', N'[email protected]', N'747-373-6885', CAST(N'2016-12-05T00:00:00.0000000' AS DateTime2), N'Web Developer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (750, N'Bondon', N'Wallbank', N'Male', N'[email protected]', N'264-368-4935', CAST(N'1992-07-12T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (751, N'Kinsley', N'Cane', N'Male', N'[email protected]', N'390-711-1812', CAST(N'2009-03-30T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (752, N'Genni', N'Ormrod', N'Female', N'[email protected]', N'235-151-3030', CAST(N'2024-05-09T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (753, N'Janith', N'Bewfield', N'Female', N'[email protected]', N'606-484-6839', CAST(N'2000-08-06T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (754, N'Emile', N'Palliser', N'Male', N'[email protected]', N'305-302-3003', CAST(N'2013-01-01T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (755, N'Rorke', N'Khomich', N'Male', N'[email protected]', N'200-526-9619', CAST(N'2013-11-08T00:00:00.0000000' AS DateTime2), N'Chemical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (756, N'Xenos', N'Bysh', N'Male', N'[email protected]', N'240-391-4126', CAST(N'1984-01-07T00:00:00.0000000' AS DateTime2), N'Nurse Practicioner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (757, N'Gerri', N'Mellanby', N'Female', N'[email protected]', N'703-544-8675', CAST(N'2012-12-01T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (758, N'Barbi', N'Inch', N'Female', N'[email protected]', N'453-760-4970', CAST(N'2007-11-01T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (759, N'Haze', N'Habbeshaw', N'Male', N'[email protected]', N'917-209-0754', CAST(N'2015-07-04T00:00:00.0000000' AS DateTime2), N'Chief Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (760, N'Pancho', N'Choupin', N'Male', N'[email protected]', N'898-477-5051', CAST(N'1993-04-10T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (761, N'Tracey', N'Coal', N'Female', N'[email protected]', N'800-470-4402', CAST(N'2014-05-12T00:00:00.0000000' AS DateTime2), N'Senior Developer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (762, N'Suzie', N'Pyle', N'Female', N'[email protected]', N'979-698-2044', CAST(N'2007-10-03T00:00:00.0000000' AS DateTime2), N'Teacher')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (763, N'Humbert', N'Farfolomeev', N'Male', N'[email protected]', N'374-713-2375', CAST(N'2009-01-27T00:00:00.0000000' AS DateTime2), N'Analyst Programmer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (764, N'Karney', N'Gosart', N'Male', N'[email protected]', N'601-890-6477', CAST(N'2006-05-04T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (765, N'Gisela', N'Standidge', N'Female', N'[email protected]', N'471-364-0774', CAST(N'1988-03-24T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (766, N'Anna', N'Ronisch', N'Female', N'[email protected]', N'180-885-1540', CAST(N'1996-11-02T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (767, N'Cindy', N'Leap', N'Female', N'[email protected]', N'873-811-4324', CAST(N'1989-04-02T00:00:00.0000000' AS DateTime2), N'Media Manager III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (768, N'Chico', N'Gimblet', N'Male', N'[email protected]', N'600-963-8047', CAST(N'2024-06-28T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (769, N'Ilyssa', N'Orrick', N'Female', N'[email protected]', N'353-116-5313', CAST(N'2002-03-09T00:00:00.0000000' AS DateTime2), N'Pharmacist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (770, N'Clerc', N'Casewell', N'Male', N'[email protected]', N'148-600-4266', CAST(N'1999-12-29T00:00:00.0000000' AS DateTime2), N'Programmer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (771, N'Randall', N'Cowthart', N'Male', N'[email protected]', N'706-329-0091', CAST(N'2014-05-23T00:00:00.0000000' AS DateTime2), N'Engineer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (772, N'Ema', N'Bampkin', N'Female', N'[email protected]', N'482-730-0165', CAST(N'1980-11-08T00:00:00.0000000' AS DateTime2), N'Software Test Engineer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (773, N'Pate', N'Mattacks', N'Male', N'[email protected]', N'935-960-0186', CAST(N'2005-10-19T00:00:00.0000000' AS DateTime2), N'Account Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (774, N'Maxie', N'Sendall', N'Female', N'[email protected]', N'647-459-4537', CAST(N'2017-11-08T00:00:00.0000000' AS DateTime2), N'Software Test Engineer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (775, N'Bancroft', N'Grundle', N'Male', N'[email protected]', N'368-535-5191', CAST(N'1983-06-25T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (776, N'Estelle', N'Ridge', N'Female', N'[email protected]', N'402-616-3828', CAST(N'2022-04-10T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (777, N'Vivi', N'Brisbane', N'Female', N'[email protected]', N'455-885-9228', CAST(N'1986-12-26T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (778, N'Pepillo', N'Rigeby', N'Male', N'[email protected]', N'766-461-6331', CAST(N'1988-04-20T00:00:00.0000000' AS DateTime2), N'Senior Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (779, N'Jorgan', N'Corey', N'Male', N'[email protected]', N'117-690-3400', CAST(N'1984-09-03T00:00:00.0000000' AS DateTime2), N'Systems Administrator III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (780, N'Blair', N'Nowlan', N'Female', N'[email protected]', N'157-801-1286', CAST(N'1984-05-19T00:00:00.0000000' AS DateTime2), N'Health Coach IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (781, N'Maureene', N'Isakovitch', N'Female', N'[email protected]', N'920-553-6228', CAST(N'2012-11-23T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (782, N'Derek', N'Quaif', N'Male', N'[email protected]', N'775-920-3433', CAST(N'1999-10-17T00:00:00.0000000' AS DateTime2), N'Structural Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (783, N'Kimbell', N'Orsman', N'Non-binary', N'[email protected]', N'560-903-9965', CAST(N'1994-10-04T00:00:00.0000000' AS DateTime2), N'Structural Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (784, N'Mariana', N'Pulhoster', N'Female', N'[email protected]', N'880-191-1215', CAST(N'2001-10-08T00:00:00.0000000' AS DateTime2), N'Systems Administrator III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (785, N'Shaun', N'Dooler', N'Female', N'[email protected]', N'851-642-6797', CAST(N'1981-01-19T00:00:00.0000000' AS DateTime2), N'Engineer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (786, N'Collin', N'Polino', N'Male', N'[email protected]', N'542-773-1724', CAST(N'2018-03-02T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (787, N'Anestassia', N'Ducarel', N'Female', N'[email protected]', N'482-458-6515', CAST(N'2004-03-19T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (788, N'Humphrey', N'Folling', N'Male', N'[email protected]', N'595-204-3041', CAST(N'2023-09-19T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (789, N'Odille', N'Wickling', N'Genderfluid', N'[email protected]', N'470-332-5670', CAST(N'1986-08-18T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (790, N'Lucilia', N'Hulles', N'Female', N'[email protected]', N'646-675-4754', CAST(N'1982-11-21T00:00:00.0000000' AS DateTime2), N'Pharmacist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (791, N'Morly', N'Farrens', N'Male', N'[email protected]', N'838-725-4501', CAST(N'2003-12-08T00:00:00.0000000' AS DateTime2), N'Account Representative I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (792, N'Lilias', N'Guest', N'Female', N'[email protected]', N'560-896-8022', CAST(N'2008-09-17T00:00:00.0000000' AS DateTime2), N'Web Designer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (793, N'Cosette', N'Liddy', N'Genderfluid', N'[email protected]', N'440-839-0035', CAST(N'2014-03-19T00:00:00.0000000' AS DateTime2), N'Engineer II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (794, N'Kakalina', N'Mariette', N'Female', N'[email protected]', N'399-900-3850', CAST(N'1988-09-16T00:00:00.0000000' AS DateTime2), N'Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (795, N'Aldis', N'Smyley', N'Male', N'[email protected]', N'633-610-2164', CAST(N'1982-10-04T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (796, N'Licha', N'Stother', N'Female', N'[email protected]', N'549-374-5150', CAST(N'2020-07-20T00:00:00.0000000' AS DateTime2), N'Senior Developer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (797, N'Deva', N'Rootham', N'Female', N'[email protected]', N'507-205-8041', CAST(N'1993-05-06T00:00:00.0000000' AS DateTime2), N'Environmental Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (798, N'Jamey', N'Decayette', N'Male', N'[email protected]', N'342-521-8985', CAST(N'2008-01-06T00:00:00.0000000' AS DateTime2), N'Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (799, N'Annemarie', N'Manginot', N'Female', N'[email protected]', N'694-714-8750', CAST(N'2013-04-05T00:00:00.0000000' AS DateTime2), N'Health Coach II')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (800, N'Michel', N'Blakesley', N'Male', N'[email protected]', N'302-354-9300', CAST(N'1989-07-13T00:00:00.0000000' AS DateTime2), N'Software Test Engineer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (801, N'Alexi', N'Aspinwall', N'Female', N'[email protected]', N'954-472-0852', CAST(N'2017-06-02T00:00:00.0000000' AS DateTime2), N'Developer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (802, N'Marlyn', N'Howford', N'Female', N'[email protected]', N'413-443-0424', CAST(N'2024-05-24T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (803, N'Vasili', N'Skillington', N'Male', N'[email protected]', N'174-619-3899', CAST(N'1999-06-18T00:00:00.0000000' AS DateTime2), N'Developer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (804, N'Archambault', N'Noke', N'Male', N'[email protected]', N'468-870-9889', CAST(N'2006-09-25T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (805, N'Leodora', N'Bardell', N'Female', N'[email protected]', N'257-379-9264', CAST(N'2019-04-22T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (806, N'Kelcey', N'Gaydon', N'Bigender', N'[email protected]', N'493-357-6784', CAST(N'2015-11-05T00:00:00.0000000' AS DateTime2), N'Programmer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (807, N'Melodee', N'Faley', N'Female', N'[email protected]', N'964-542-4165', CAST(N'1980-04-27T00:00:00.0000000' AS DateTime2), N'Assistant Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (808, N'Sibley', N'Bemment', N'Female', N'[email protected]', N'653-625-3241', CAST(N'1995-04-29T00:00:00.0000000' AS DateTime2), N'Project Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (809, N'Hillel', N'Sparwell', N'Male', N'[email protected]', N'205-421-5636', CAST(N'2017-07-04T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (810, N'Bryce', N'Petre', N'Male', N'[email protected]', N'920-650-2564', CAST(N'2014-03-22T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (811, N'Ingrim', N'Kiff', N'Male', N'[email protected]', N'979-454-3808', CAST(N'1993-10-25T00:00:00.0000000' AS DateTime2), N'Developer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (812, N'Melody', N'Fryd', N'Female', N'[email protected]', N'780-781-5994', CAST(N'1994-08-16T00:00:00.0000000' AS DateTime2), N'VP Sales')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (813, N'Gothart', N'Warden', N'Male', N'[email protected]', N'910-169-1173', CAST(N'2023-09-02T00:00:00.0000000' AS DateTime2), N'Senior Editor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (814, N'Fleur', N'Hopkynson', N'Female', N'[email protected]', N'699-819-9225', CAST(N'2008-07-14T00:00:00.0000000' AS DateTime2), N'Quality Control Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (815, N'Roger', N'Pleasance', N'Genderqueer', N'[email protected]', N'252-741-6738', CAST(N'2008-03-01T00:00:00.0000000' AS DateTime2), N'Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (816, N'Barr', N'Allder', N'Male', N'[email protected]', N'144-919-3085', CAST(N'2001-06-16T00:00:00.0000000' AS DateTime2), N'Systems Administrator III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (817, N'Genia', N'Haith', N'Female', N'[email protected]', N'303-934-7511', CAST(N'1994-03-01T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (818, N'Dolores', N'D''Angeli', N'Female', N'[email protected]', N'881-220-1300', CAST(N'1983-01-07T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (819, N'Iosep', N'Drewry', N'Male', N'[email protected]', N'956-956-0032', CAST(N'2017-10-10T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (820, N'Chancey', N'Paudin', N'Male', N'[email protected]', N'121-504-4802', CAST(N'1989-06-12T00:00:00.0000000' AS DateTime2), N'Chief Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (821, N'Ody', N'Chaney', N'Male', N'[email protected]', N'274-154-0475', CAST(N'2015-03-23T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (822, N'Wiley', N'Durgan', N'Male', N'[email protected]', N'898-822-5288', CAST(N'2001-11-19T00:00:00.0000000' AS DateTime2), N'Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (823, N'Shirl', N'Howden', N'Female', N'[email protected]', N'744-111-2179', CAST(N'2023-05-27T00:00:00.0000000' AS DateTime2), N'Account Representative II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (824, N'Kelli', N'Pittock', N'Non-binary', N'[email protected]', N'718-692-1578', CAST(N'2004-10-20T00:00:00.0000000' AS DateTime2), N'Structural Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (825, N'Ernestine', N'Jaquemar', N'Female', N'[email protected]', N'245-282-6370', CAST(N'2022-10-02T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (826, N'Sigismund', N'Moehler', N'Male', N'[email protected]', N'573-754-0163', CAST(N'1996-07-15T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (827, N'Filippo', N'Leer', N'Male', N'[email protected]', N'197-257-3372', CAST(N'1998-04-29T00:00:00.0000000' AS DateTime2), N'Geological Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (828, N'Elle', N'Turner', N'Female', N'[email protected]', N'687-963-3852', CAST(N'1986-05-03T00:00:00.0000000' AS DateTime2), N'Office Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (829, N'Alley', N'Kingsland', N'Male', N'[email protected]', N'690-656-8957', CAST(N'2012-01-01T00:00:00.0000000' AS DateTime2), N'Dental Hygienist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (830, N'Michaeline', N'Earney', N'Female', N'[email protected]', N'616-126-3111', CAST(N'2016-08-04T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (831, N'Harald', N'Cave', N'Male', N'[email protected]', N'779-324-2146', CAST(N'1984-08-12T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (832, N'Matty', N'Markey', N'Female', N'[email protected]', N'164-901-5725', CAST(N'2000-12-21T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (833, N'Mylo', N'Dunkerley', N'Male', N'[email protected]', N'774-586-1618', CAST(N'1984-01-08T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (834, N'Emma', N'Tulleth', N'Female', N'[email protected]', N'946-608-7462', CAST(N'2024-07-29T00:00:00.0000000' AS DateTime2), N'Research Assistant I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (835, N'Sherlock', N'Stormouth', N'Male', N'[email protected]', N'820-234-0713', CAST(N'2005-10-05T00:00:00.0000000' AS DateTime2), N'Safety Technician III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (836, N'Hattie', N'Thridgould', N'Female', N'[email protected]', N'400-915-3572', CAST(N'2021-11-22T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (837, N'Jules', N'Clark', N'Bigender', N'[email protected]', N'271-395-8708', CAST(N'1987-10-22T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (838, N'Karolina', N'Childerhouse', N'Female', N'[email protected]', N'835-686-2783', CAST(N'1991-03-15T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (839, N'Catie', N'Polgreen', N'Female', N'[email protected]', N'101-586-5988', CAST(N'2004-05-15T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (840, N'Anny', N'Waber', N'Non-binary', N'[email protected]', N'769-448-3088', CAST(N'2001-10-09T00:00:00.0000000' AS DateTime2), N'Programmer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (841, N'Alric', N'Mac', N'Male', N'[email protected]', N'634-603-8760', CAST(N'1984-11-18T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (842, N'Kimble', N'Tomczak', N'Male', N'[email protected]', N'402-959-7089', CAST(N'2017-03-01T00:00:00.0000000' AS DateTime2), N'Research Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (843, N'Carolin', N'Cowlas', N'Female', N'[email protected]', N'315-150-2825', CAST(N'1987-09-23T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (844, N'Marin', N'McEnteggart', N'Female', N'[email protected]', N'354-322-0640', CAST(N'2010-11-13T00:00:00.0000000' AS DateTime2), N'Clinical Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (845, N'Harriet', N'Chatters', N'Female', N'[email protected]', N'747-422-8931', CAST(N'2015-06-07T00:00:00.0000000' AS DateTime2), N'Design Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (846, N'Bekki', N'Chittleburgh', N'Female', N'[email protected]', N'189-263-9946', CAST(N'1986-11-27T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (847, N'Oswell', N'Eyeington', N'Male', N'[email protected]', N'839-736-2842', CAST(N'2021-10-26T00:00:00.0000000' AS DateTime2), N'Staff Scientist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (848, N'Lenette', N'Bowdler', N'Female', N'[email protected]', N'633-553-0410', CAST(N'2006-09-21T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (849, N'Elie', N'Iggalden', N'Female', N'[email protected]', N'274-500-6895', CAST(N'1983-12-04T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (850, N'Son', N'Ganny', N'Genderfluid', N'[email protected]', N'246-103-8539', CAST(N'2024-12-31T00:00:00.0000000' AS DateTime2), N'Account Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (851, N'Jeri', N'Bleacher', N'Female', N'[email protected]', N'283-510-2648', CAST(N'2017-03-31T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (852, N'Ciro', N'Tevlin', N'Male', N'[email protected]', N'743-845-6422', CAST(N'2004-01-13T00:00:00.0000000' AS DateTime2), N'Safety Technician IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (853, N'Jerrie', N'Bonds', N'Male', N'[email protected]', N'740-822-3893', CAST(N'2011-04-06T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (854, N'Mikol', N'Killgus', N'Male', N'[email protected]', N'422-510-7610', CAST(N'1999-02-02T00:00:00.0000000' AS DateTime2), N'Database Administrator II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (855, N'Kellsie', N'Overbury', N'Female', N'[email protected]', N'392-375-8171', CAST(N'2023-01-02T00:00:00.0000000' AS DateTime2), N'Senior Developer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (856, N'Valeria', N'Mufford', N'Female', N'[email protected]', N'637-165-7541', CAST(N'1981-02-27T00:00:00.0000000' AS DateTime2), N'Food Chemist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (857, N'Helene', N'Muzzi', N'Female', N'[email protected]', N'183-396-8283', CAST(N'1991-02-03T00:00:00.0000000' AS DateTime2), N'VP Product Management')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (858, N'Augusta', N'Runacres', N'Female', N'[email protected]', N'794-682-5158', CAST(N'1999-06-26T00:00:00.0000000' AS DateTime2), N'Database Administrator III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (859, N'Goran', N'Iacabucci', N'Male', N'[email protected]', N'897-147-5430', CAST(N'1983-03-25T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (860, N'Delila', N'Lensch', N'Female', N'[email protected]', N'852-528-8086', CAST(N'1999-02-12T00:00:00.0000000' AS DateTime2), N'Automation Specialist I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (861, N'Eamon', N'Meysham', N'Male', N'[email protected]', N'594-544-4081', CAST(N'2000-08-26T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (862, N'Dame', N'Danaher', N'Male', N'[email protected]', N'822-606-6008', CAST(N'2024-07-09T00:00:00.0000000' AS DateTime2), N'Business Systems Development Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (863, N'Gertrude', N'Dyton', N'Female', N'[email protected]', N'599-258-3131', CAST(N'2023-08-20T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (864, N'Fern', N'Orht', N'Female', N'[email protected]', N'398-826-9772', CAST(N'2024-09-02T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (865, N'Blake', N'Pluthero', N'Male', N'[email protected]', N'491-680-3141', CAST(N'2010-11-12T00:00:00.0000000' AS DateTime2), N'Software Engineer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (866, N'Audra', N'Giraudoux', N'Female', N'[email protected]', N'398-300-6885', CAST(N'2000-06-10T00:00:00.0000000' AS DateTime2), N'Budget/Accounting Analyst II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (867, N'Bessie', N'Rea', N'Female', N'[email protected]', N'295-112-3925', CAST(N'2000-11-23T00:00:00.0000000' AS DateTime2), N'Pharmacist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (868, N'Honoria', N'Mounce', N'Female', N'[email protected]', N'301-831-1081', CAST(N'2009-08-11T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (869, N'Annabell', N'Nusche', N'Female', N'[email protected]', N'758-813-6122', CAST(N'2008-02-21T00:00:00.0000000' AS DateTime2), N'Staff Accountant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (870, N'Gaven', N'Papen', N'Male', N'[email protected]', N'286-716-8251', CAST(N'2014-12-13T00:00:00.0000000' AS DateTime2), N'Web Designer IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (871, N'Gherardo', N'Drever', N'Male', N'[email protected]', N'939-634-6248', CAST(N'2024-01-07T00:00:00.0000000' AS DateTime2), N'Assistant Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (872, N'Claudette', N'Manjot', N'Female', N'[email protected]', N'895-444-5473', CAST(N'2023-03-21T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (873, N'Frans', N'Gieves', N'Male', N'[email protected]', N'177-563-0446', CAST(N'1986-09-20T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (874, N'Marketa', N'Vallentin', N'Female', N'[email protected]', N'122-857-4187', CAST(N'2007-04-04T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (875, N'Rhianon', N'Hatwell', N'Female', N'[email protected]', N'245-945-6821', CAST(N'1981-11-22T00:00:00.0000000' AS DateTime2), N'Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (876, N'Genvieve', N'Shere', N'Female', N'[email protected]', N'266-125-7316', CAST(N'2004-11-07T00:00:00.0000000' AS DateTime2), N'Sales Representative')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (877, N'Peggie', N'Reims', N'Female', N'[email protected]', N'503-377-7467', CAST(N'2012-05-03T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (878, N'Estevan', N'Brayford', N'Bigender', N'[email protected]', N'829-909-0155', CAST(N'1992-09-27T00:00:00.0000000' AS DateTime2), N'Physical Therapy Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (879, N'Delilah', N'Iianon', N'Female', N'[email protected]', N'433-939-7408', CAST(N'2001-08-17T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (880, N'Jenelle', N'Gantlett', N'Female', N'[email protected]', N'511-196-9876', CAST(N'2010-01-03T00:00:00.0000000' AS DateTime2), N'Safety Technician III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (881, N'Magdalen', N'Chatin', N'Female', N'[email protected]', N'437-145-3056', CAST(N'1988-02-23T00:00:00.0000000' AS DateTime2), N'Associate Professor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (882, N'Sonny', N'Hasel', N'Male', N'[email protected]', N'856-809-2529', CAST(N'2011-03-23T00:00:00.0000000' AS DateTime2), N'Help Desk Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (883, N'Bronson', N'Vanyukhin', N'Male', N'[email protected]', N'982-655-8942', CAST(N'1981-05-26T00:00:00.0000000' AS DateTime2), N'Legal Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (884, N'Sancho', N'Cockrill', N'Male', N'[email protected]', N'622-478-7608', CAST(N'2018-10-16T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (885, N'Ardyth', N'Dominick', N'Female', N'[email protected]', N'188-393-9114', CAST(N'1996-02-05T00:00:00.0000000' AS DateTime2), N'Teacher')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (886, N'Corbie', N'Dewhirst', N'Male', N'[email protected]', N'691-681-3479', CAST(N'2015-04-03T00:00:00.0000000' AS DateTime2), N'Financial Advisor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (887, N'Erasmus', N'Beiderbecke', N'Male', N'[email protected]', N'136-654-8417', CAST(N'1985-09-12T00:00:00.0000000' AS DateTime2), N'Speech Pathologist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (888, N'Kathe', N'Paradine', N'Female', N'[email protected]', N'927-985-8664', CAST(N'2007-09-04T00:00:00.0000000' AS DateTime2), N'Marketing Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (889, N'Lorry', N'Braker', N'Male', N'[email protected]', N'973-542-3270', CAST(N'1996-02-23T00:00:00.0000000' AS DateTime2), N'Senior Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (890, N'Gratia', N'Beadnall', N'Female', N'[email protected]', N'400-174-8377', CAST(N'1992-11-26T00:00:00.0000000' AS DateTime2), N'Senior Financial Analyst')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (891, N'Marlow', N'McTerrelly', N'Male', N'[email protected]', N'944-312-9552', CAST(N'2021-12-08T00:00:00.0000000' AS DateTime2), N'Payment Adjustment Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (892, N'Mae', N'Steeden', N'Female', N'[email protected]', N'349-141-7990', CAST(N'2016-01-16T00:00:00.0000000' AS DateTime2), N'Registered Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (893, N'Anita', N'Heild', N'Female', N'[email protected]', N'970-477-5459', CAST(N'2012-08-05T00:00:00.0000000' AS DateTime2), N'Software Test Engineer III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (894, N'Gaylord', N'Wyvill', N'Male', N'[email protected]', N'352-682-8152', CAST(N'2003-11-16T00:00:00.0000000' AS DateTime2), N'Occupational Therapist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (895, N'Garik', N'Gronav', N'Polygender', N'[email protected]', N'940-953-2587', CAST(N'2009-08-22T00:00:00.0000000' AS DateTime2), N'Geological Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (896, N'Kayle', N'Vedishchev', N'Female', N'[email protected]', N'924-505-9116', CAST(N'2002-10-30T00:00:00.0000000' AS DateTime2), N'Office Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (897, N'Adorne', N'Letertre', N'Female', N'[email protected]', N'660-815-3869', CAST(N'1988-02-09T00:00:00.0000000' AS DateTime2), N'VP Quality Control')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (898, N'Lorens', N'Rogans', N'Male', N'[email protected]', N'117-149-4062', CAST(N'1985-09-11T00:00:00.0000000' AS DateTime2), N'Recruiting Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (899, N'Gerick', N'Yoskowitz', N'Male', N'[email protected]', N'548-211-3086', CAST(N'1982-12-18T00:00:00.0000000' AS DateTime2), N'Chief Design Engineer')
GO
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (900, N'Agneta', N'Fleischer', N'Female', N'[email protected]', N'290-530-7225', CAST(N'2006-06-30T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (901, N'Pia', N'Southcott', N'Female', N'[email protected]', N'659-684-9053', CAST(N'2004-01-31T00:00:00.0000000' AS DateTime2), N'Assistant Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (902, N'Benjie', N'Worsnup', N'Male', N'[email protected]', N'732-753-7518', CAST(N'1996-02-04T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (903, N'Normand', N'Alner', N'Male', N'[email protected]', N'746-570-8571', CAST(N'1980-06-17T00:00:00.0000000' AS DateTime2), N'Research Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (904, N'Carilyn', N'Ciotto', N'Female', N'[email protected]', N'548-423-2370', CAST(N'2024-11-02T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (905, N'Konstantine', N'Howle', N'Male', N'[email protected]', N'529-103-0537', CAST(N'1986-06-23T00:00:00.0000000' AS DateTime2), N'Senior Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (906, N'Ruthie', N'Yashanov', N'Female', N'[email protected]', N'648-468-5752', CAST(N'1992-07-26T00:00:00.0000000' AS DateTime2), N'Nuclear Power Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (907, N'Pall', N'Pellew', N'Male', N'[email protected]', N'792-696-9039', CAST(N'2018-07-31T00:00:00.0000000' AS DateTime2), N'Information Systems Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (908, N'Patrica', N'Coton', N'Female', N'[email protected]', N'873-905-8121', CAST(N'2016-06-09T00:00:00.0000000' AS DateTime2), N'Marketing Assistant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (909, N'Elyn', N'Middle', N'Female', N'[email protected]', N'634-570-9493', CAST(N'1994-06-25T00:00:00.0000000' AS DateTime2), N'Programmer Analyst I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (910, N'Sinclare', N'Norwich', N'Male', N'[email protected]', N'885-572-3845', CAST(N'1987-07-21T00:00:00.0000000' AS DateTime2), N'Mechanical Systems Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (911, N'Flor', N'Tolhurst', N'Polygender', N'[email protected]', N'678-306-0301', CAST(N'1986-04-14T00:00:00.0000000' AS DateTime2), N'Environmental Tech')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (912, N'Salem', N'Hagland', N'Male', N'[email protected]', N'339-102-7373', CAST(N'1992-03-13T00:00:00.0000000' AS DateTime2), N'Automation Specialist III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (913, N'Hollyanne', N'Rohmer', N'Female', N'[email protected]', N'488-154-8845', CAST(N'2015-03-22T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (914, N'Jackie', N'Scrowton', N'Female', N'[email protected]', N'425-562-9524', CAST(N'2022-07-01T00:00:00.0000000' AS DateTime2), N'Social Worker')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (915, N'Chandler', N'Galbreth', N'Male', N'[email protected]', N'319-814-0506', CAST(N'2014-05-30T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (916, N'Mallory', N'Foulkes', N'Male', N'[email protected]', N'768-802-0059', CAST(N'2016-02-02T00:00:00.0000000' AS DateTime2), N'Database Administrator I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (917, N'Thelma', N'Foot', N'Female', N'[email protected]', N'492-760-1685', CAST(N'2016-09-22T00:00:00.0000000' AS DateTime2), N'Account Representative IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (918, N'Wolfgang', N'Leate', N'Male', N'[email protected]', N'651-291-2022', CAST(N'2016-04-22T00:00:00.0000000' AS DateTime2), N'Account Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (919, N'Stefano', N'Anchor', N'Male', N'[email protected]', N'372-172-9166', CAST(N'1994-11-10T00:00:00.0000000' AS DateTime2), N'Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (920, N'Rene', N'Kilrow', N'Female', N'[email protected]', N'237-795-3037', CAST(N'1990-07-28T00:00:00.0000000' AS DateTime2), N'Data Coordinator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (921, N'Gabey', N'Padly', N'Female', N'[email protected]', N'869-449-3089', CAST(N'2010-08-08T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (922, N'Munmro', N'Le Maitre', N'Male', N'[email protected]', N'670-626-1735', CAST(N'2019-09-14T00:00:00.0000000' AS DateTime2), N'Quality Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (923, N'Juli', N'Aucutt', N'Female', N'[email protected]', N'300-585-5644', CAST(N'2020-09-04T00:00:00.0000000' AS DateTime2), N'Research Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (924, N'Lemmy', N'Ollander', N'Male', N'[email protected]', N'841-258-5828', CAST(N'2024-03-18T00:00:00.0000000' AS DateTime2), N'Teacher')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (925, N'Arie', N'Redbourn', N'Male', N'[email protected]', N'256-405-2738', CAST(N'2000-10-21T00:00:00.0000000' AS DateTime2), N'Product Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (926, N'Carver', N'Conlaund', N'Male', N'[email protected]', N'114-807-9055', CAST(N'1991-12-11T00:00:00.0000000' AS DateTime2), N'Paralegal')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (927, N'Hesther', N'Borres', N'Female', N'[email protected]', N'254-726-5812', CAST(N'2025-05-04T00:00:00.0000000' AS DateTime2), N'Research Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (928, N'Jessy', N'Girault', N'Female', N'[email protected]', N'417-894-2853', CAST(N'2003-05-11T00:00:00.0000000' AS DateTime2), N'Chemical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (929, N'Trix', N'Daldry', N'Female', N'[email protected]', N'725-948-2232', CAST(N'2024-11-15T00:00:00.0000000' AS DateTime2), N'Administrative Assistant II')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (930, N'Joyann', N'Elvin', N'Female', N'[email protected]', N'124-383-5882', CAST(N'1992-02-05T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (931, N'Bree', N'Engall', N'Female', N'[email protected]', N'867-178-3587', CAST(N'2022-09-01T00:00:00.0000000' AS DateTime2), N'Technical Writer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (932, N'Peyter', N'Scarlett', N'Genderqueer', N'[email protected]', N'270-222-6066', CAST(N'1994-09-05T00:00:00.0000000' AS DateTime2), N'Systems Administrator III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (933, N'Mair', N'Brandone', N'Female', N'[email protected]', N'389-829-8775', CAST(N'1982-12-12T00:00:00.0000000' AS DateTime2), N'Media Manager III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (934, N'Miguelita', N'Stollery', N'Female', N'[email protected]', N'321-149-5380', CAST(N'2021-04-16T00:00:00.0000000' AS DateTime2), N'Analog Circuit Design manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (935, N'Lynn', N'Devonish', N'Female', N'[email protected]', N'167-563-1227', CAST(N'1993-02-24T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (936, N'Ahmed', N'Allwright', N'Male', N'[email protected]', N'902-968-1517', CAST(N'2004-03-05T00:00:00.0000000' AS DateTime2), N'GIS Technical Architect')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (937, N'Dotti', N'Brenton', N'Female', N'[email protected]', N'322-747-2593', CAST(N'1985-12-07T00:00:00.0000000' AS DateTime2), N'Structural Analysis Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (938, N'Ella', N'Lobb', N'Female', N'[email protected]', N'944-381-6237', CAST(N'1999-11-05T00:00:00.0000000' AS DateTime2), N'VP Marketing')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (939, N'Denyse', N'Gouldstone', N'Female', N'[email protected]', N'680-721-8823', CAST(N'2021-05-08T00:00:00.0000000' AS DateTime2), N'Computer Systems Analyst III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (940, N'Harlen', N'Hebblewhite', N'Male', N'[email protected]', N'576-773-6144', CAST(N'2017-07-10T00:00:00.0000000' AS DateTime2), N'Electrical Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (941, N'Marsha', N'Scannell', N'Female', N'[email protected]', N'650-762-5025', CAST(N'1985-01-20T00:00:00.0000000' AS DateTime2), N'Community Outreach Specialist')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (942, N'Wilton', N'Schade', N'Male', N'[email protected]', N'405-723-8709', CAST(N'2004-07-02T00:00:00.0000000' AS DateTime2), N'Senior Cost Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (943, N'Winfred', N'Giacomasso', N'Male', N'[email protected]', N'386-702-0383', CAST(N'2009-10-19T00:00:00.0000000' AS DateTime2), N'Junior Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (944, N'Carolyn', N'Morsley', N'Female', N'[email protected]', N'703-667-2800', CAST(N'2009-02-21T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (945, N'Janeva', N'Kitcatt', N'Female', N'[email protected]', N'495-435-9813', CAST(N'1982-12-12T00:00:00.0000000' AS DateTime2), N'Account Executive')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (946, N'Vi', N'Mulvihill', N'Female', N'[email protected]', N'292-645-0316', CAST(N'1992-11-23T00:00:00.0000000' AS DateTime2), N'Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (947, N'Arron', N'Jone', N'Bigender', N'[email protected]', N'805-184-4914', CAST(N'1985-02-19T00:00:00.0000000' AS DateTime2), N'VP Accounting')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (948, N'Harris', N'Stile', N'Male', N'[email protected]', N'738-161-8957', CAST(N'1980-07-21T00:00:00.0000000' AS DateTime2), N'Programmer Analyst IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (949, N'Addi', N'Garrettson', N'Female', N'[email protected]', N'661-755-9356', CAST(N'1992-06-10T00:00:00.0000000' AS DateTime2), N'Biostatistician IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (950, N'Mabel', N'Donaghy', N'Female', N'[email protected]', N'265-406-8703', CAST(N'1995-10-31T00:00:00.0000000' AS DateTime2), N'Graphic Designer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (951, N'Nichols', N'Smee', N'Male', N'[email protected]', N'125-290-2854', CAST(N'2006-06-11T00:00:00.0000000' AS DateTime2), N'Nurse Practicioner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (952, N'Kevyn', N'Macbane', N'Female', N'[email protected]', N'805-993-6905', CAST(N'2024-02-04T00:00:00.0000000' AS DateTime2), N'Librarian')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (953, N'Bret', N'Rouby', N'Male', N'[email protected]', N'310-491-7243', CAST(N'2017-09-27T00:00:00.0000000' AS DateTime2), N'Web Developer I')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (954, N'Byron', N'Fidelli', N'Male', N'[email protected]', N'684-140-8064', CAST(N'1981-03-20T00:00:00.0000000' AS DateTime2), N'Research Nurse')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (955, N'Dill', N'Ferres', N'Male', N'[email protected]', N'579-829-0108', CAST(N'1997-01-28T00:00:00.0000000' AS DateTime2), N'Internal Auditor')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (956, N'Jaye', N'Padly', N'Male', N'[email protected]', N'422-205-9976', CAST(N'2018-06-17T00:00:00.0000000' AS DateTime2), N'Assistant Media Planner')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (957, N'Bobbette', N'Idiens', N'Female', N'[email protected]', N'510-503-1066', CAST(N'2020-01-11T00:00:00.0000000' AS DateTime2), N'Accounting Assistant III')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (958, N'Suzanne', N'Drewett', N'Female', N'[email protected]', N'480-694-7296', CAST(N'2000-11-05T00:00:00.0000000' AS DateTime2), N'Assistant Manager')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (959, N'Rasia', N'Skeffington', N'Female', N'[email protected]', N'482-325-6361', CAST(N'2019-07-03T00:00:00.0000000' AS DateTime2), N'Paralegal')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (960, N'Orren', N'Bank', N'Male', N'[email protected]', N'145-183-6459', CAST(N'1983-11-06T00:00:00.0000000' AS DateTime2), N'Civil Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (961, N'Boony', N'Cargill', N'Male', N'[email protected]', N'243-719-9744', CAST(N'1980-11-23T00:00:00.0000000' AS DateTime2), N'Administrative Officer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (962, N'Lawrence', N'Chaldecott', N'Male', N'[email protected]', N'170-364-4187', CAST(N'1999-11-27T00:00:00.0000000' AS DateTime2), N'Sales Associate')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (963, N'Carol', N'Artist', N'Female', N'[email protected]', N'227-761-8731', CAST(N'1986-07-31T00:00:00.0000000' AS DateTime2), N'Tax Accountant')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (964, N'Jan', N'Pirazzi', N'Male', N'[email protected]', N'512-528-8634', CAST(N'1984-01-30T00:00:00.0000000' AS DateTime2), N'Structural Engineer')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (965, N'Adara', N'Braunle', N'Non-binary', N'[email protected]', N'589-471-6303', CAST(N'2021-07-10T00:00:00.0000000' AS DateTime2), N'Automation Specialist IV')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (966, N'Shamus', N'Golda', N'Male', N'[email protected]', N'142-378-0907', CAST(N'2022-02-17T00:00:00.0000000' AS DateTime2), N'Operator')
INSERT [dbo].[Employee] ([Id], [FirstName], [LastName], [Gender], [Email], [Telephone], [DateOfBirth], [Designation]) VALUES (967, N'Kenn', N'Healy', N'Male', N'[email protected]', N'396-591-1669', CAST(N'2004-03-12T00:00:00.0000000' AS DateTime2), N'Human Resources Assistant III')