Created
June 17, 2020 04:08
-
-
Save Llewellynvdm/3b15b896beb984d5f43186f851512559 to your computer and use it in GitHub Desktop.
Students at XYZ College
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [CollegeSystem] | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
SET ANSI_PADDING ON | |
GO | |
CREATE TABLE [dbo].[Students]( | |
[ID] [int] IDENTITY(1,1) NOT NULL, | |
[Number] [int] NOT NULL, | |
[Name] [char](64) NOT NULL, | |
[GraduationDate] [datetime] NOT NULL, | |
[BirthDate] [datetime] 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) ON [PRIMARY] | |
) ON [PRIMARY] | |
GO | |
SET ANSI_PADDING OFF | |
GO | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (881679, 'Anna J. Kennedy', '2012-09-02', '1980-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (784487, 'Nancy W. Bennett', '1995-09-01', '1951-11-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718785, 'Sharon S. Myers', '1998-10-06', '1977-12-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777574, 'Lisa S. Jackson', '2012-10-19', '1995-10-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (684678, 'Michelle N. Snyder', '1997-05-19', '1956-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887878, 'Karen P. Hunter', '2012-05-01', '1975-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (005793, 'Richard X. Brooks', '2006-09-01', '1982-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (324747, 'Henry W. Long', '1990-06-29', '1950-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (574265, 'Lawrence F. Flores', '1995-02-21', '1959-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (928587, 'Angela M. Castillo', '2009-11-14', '1991-05-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (759384, ' M. Bell', '2017-03-29', '1985-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (717379, 'Justin P. Smith', '1990-12-14', '1968-12-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827400, 'Jason I. Morales', '1991-03-13', '1965-12-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (319416, 'Eric Burns', '2001-08-19', '1984-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577644, 'Helen Z. Fox', '1994-10-14', '1962-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (667693, 'Anthony Ortiz', '2006-01-11', '1966-12-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (841784, 'Frank Cole', '2002-01-27', '1967-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170869, 'Jeffrey K. Wells', '1994-01-11', '1973-03-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (714777, 'Albert N. Ramirez', '1994-08-17', '1963-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (701804, 'Edward M. Wright', '1995-08-28', '1968-08-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (874576, 'Matthew Mills', '1995-07-19', '1960-06-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (396847, 'Martha Cruz', '1995-11-13', '1956-08-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (427289, 'Michelle J. Hughes', '1999-11-19', '1955-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (723227, 'Patrick Simpson', '1996-09-04', '1963-02-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (702678, 'Larry E. Jackson', '2013-09-25', '1989-12-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (348336, 'Walter U. Bailey', '2007-08-13', '1980-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707485, 'Harold V. Moreno', '2011-04-14', '1986-03-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878027, 'Charles L. Vasquez', '1992-07-12', '1949-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (696532, 'Matthew N. Simmons', '2012-03-01', '1979-01-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (088676, 'Shirley L. Barnes', '1997-11-12', '1974-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (405453, 'Lawrence H. Rivera', '2003-01-27', '1977-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (759372, 'Betty L. Turner', '2019-01-03', '1999-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (537454, 'William Herrera', '2000-08-31', '1969-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (281009, 'Susan Q. Phillips', '2006-02-19', '1973-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (602871, 'Marie Brown', '2011-02-11', '1992-06-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (864653, 'Cynthia F. Carter', '2002-10-12', '1972-10-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772776, 'Frances Z. Chavez', '1998-01-04', '1971-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (207767, 'Janet Q. Reed', '1999-04-11', '1972-05-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (842567, 'Nicholas K. Young', '1993-03-28', '1965-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (988472, 'Christine Fernandez', '2011-02-12', '1975-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (434527, 'Kenneth Mitchell', '2001-02-10', '1958-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (117887, 'Pamela Kim', '2015-02-10', '1971-10-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377113, 'Ann S. Palmer', '1993-09-11', '1957-10-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (973338, 'Brian Parker', '2019-03-18', '1976-12-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (355818, 'Thomas C. Jackson', '1991-11-24', '1969-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578693, 'Timothy J. Reyes', '1993-12-08', '1974-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (142232, 'Kathleen I. Ward', '1997-11-29', '1955-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (783397, 'Charles N. Reed', '2003-10-05', '1969-12-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (504364, 'Raymond K. Stephens', '1999-05-01', '1956-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (497754, 'Keith H. Boyd', '2000-12-25', '1968-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (861693, 'Melissa Clark', '1998-05-18', '1955-12-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (402732, 'Carol L. Henry', '1999-05-27', '1968-07-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747708, 'Joseph H. Lee', '1992-08-08', '1976-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (229463, 'Jerry Johnson', '1994-02-20', '1957-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (871753, 'Catherine N. Powell', '2009-02-13', '1992-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (288728, 'Anthony R. Green', '2005-04-30', '1978-12-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (152478, 'Sandra W. Dixon', '2013-04-04', '1973-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (709099, 'Linda W. Ortiz', '2007-02-06', '1966-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777117, 'Pamela Evans', '2018-02-20', '1989-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (642877, 'Ronald U. Romero', '1995-10-24', '1954-01-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (200770, 'David Z. Stewart', '1994-11-06', '1970-02-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708530, 'Christopher D. Wilson', '2009-06-24', '1978-03-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (761784, 'Samuel P. Hamilton', '1991-02-25', '1961-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577853, 'Daniel V. Bennett', '1998-07-15', '1963-10-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (090707, 'John U. Graham', '1991-03-01', '1955-11-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (179547, 'Arthur D. Coleman', '1995-04-06', '1967-10-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757887, 'Margaret W. Hernandez', '1991-12-07', '1968-12-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (618656, 'Willie Green', '1994-11-05', '1964-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (481408, 'Daniel Vasquez', '1995-02-09', '1954-01-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077423, 'Justin U. Gonzales', '2015-08-16', '1976-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (894071, 'Elizabeth O. Crawford', '1998-11-02', '1961-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772048, 'Jennifer Wagner', '2015-05-31', '1993-05-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857725, 'Justin M. Moreno', '2018-11-01', '2001-11-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (836609, 'Larry O. Bailey', '1991-10-29', '1961-07-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (362257, 'Marie R. Olson', '1992-09-05', '1974-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (868225, 'Anna Ortiz', '2001-11-28', '1971-01-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (299875, 'Amanda P. Dixon', '1993-12-06', '1967-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707778, 'Helen R. Kim', '1994-02-15', '1968-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (867825, 'Kenneth D. Price', '2014-08-18', '1973-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (783584, 'Andrew Morales', '1994-04-24', '1977-06-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (185577, 'George N. Bryant', '2019-10-16', '1997-02-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (937076, 'George K. Romero', '1997-06-01', '1970-03-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787391, 'Ruth E. Castillo', '2002-12-27', '1983-01-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (072743, 'Steven V. Green', '1991-06-01', '1965-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (579970, 'Kathleen V. Thomas', '1994-04-08', '1965-07-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (768486, 'Scott Q. Gomez', '2007-10-14', '1964-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (329405, 'Susan U. Mitchell', '1994-01-29', '1952-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (275423, 'Kimberly C. Meyer', '1998-07-01', '1976-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (761744, 'Nicholas Allen', '1990-05-10', '1973-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (862846, 'Terry G. Young', '1999-01-24', '1961-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (765730, 'Karen Romero', '1994-07-21', '1977-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708473, 'Arthur F. Rose', '1990-05-08', '1964-12-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (088233, 'Nancy Wallace', '1995-10-04', '1969-11-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587413, 'Charles L. Ryan', '2002-09-04', '1985-02-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779168, 'Henry Murphy', '1998-03-25', '1964-05-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (338163, 'Steven W. Parker', '2011-12-05', '1986-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (969708, 'Andrew P. Carter', '1991-01-09', '1959-10-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (675739, 'Joshua U. Nichols', '2017-10-15', '1982-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (815755, 'George G. Mendez', '1999-10-04', '1980-07-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (598877, 'Edward A. Sanchez', '2016-12-28', '1982-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (735780, 'Virginia B. Gutierrez', '1999-02-16', '1968-01-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (402088, 'Matthew B. Gutierrez', '2018-03-05', '1978-11-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730782, 'Carolyn Aguilar', '1999-04-10', '1981-09-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (790705, 'Ruth L. Hayes', '2009-06-19', '1966-10-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (443987, 'Timothy R. Bailey', '2014-06-01', '1971-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (618998, 'Martha J. Harrison', '2013-05-28', '1973-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877285, 'Arthur I. Thompson', '2000-02-05', '1973-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (828897, 'Frank Roberts', '1997-11-20', '1973-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (464880, 'Kevin Martin', '2013-01-11', '1969-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (841087, 'Gerald A. Jackson', '2009-07-08', '1965-02-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (641903, 'Brian P. Brooks', '2002-07-19', '1961-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776779, 'Mark Reed', '2006-09-02', '1964-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777337, 'Stephanie M. Fox', '1995-08-19', '1957-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678339, 'Gerald T. Adams', '2002-03-09', '1966-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (879671, 'Sharon X. Hicks', '2004-05-26', '1959-10-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (273689, 'Daniel T. Holmes', '1998-01-31', '1962-01-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (078119, 'Daniel Rodriguez', '2017-01-22', '1973-06-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (315077, 'Lisa T. Thomas', '2015-07-02', '1972-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (215106, 'Mary L. Young', '1990-11-24', '1970-01-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797277, 'Daniel C. Morgan', '1991-04-02', '1955-07-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (378120, 'David C. Dixon', '1998-06-09', '1980-12-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178179, 'David D. Rivera', '1999-06-07', '1954-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (168708, 'Donald Clark', '2010-07-05', '1968-03-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857271, 'Willie Taylor', '1990-05-11', '1968-01-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (246923, 'Jack Nichols', '1990-12-29', '1971-02-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (101527, 'Patrick Ryan', '1996-09-09', '1958-09-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (561731, 'Jason U. Ortiz', '1997-08-02', '1970-09-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (067912, 'Susan F. Morales', '1995-12-11', '1956-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (093872, 'Linda Garcia', '1996-07-29', '1962-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (645479, 'Brenda Mills', '2007-03-23', '1966-02-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877767, 'Daniel T. Guzman', '1992-06-25', '1950-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (848776, 'Virginia Hunter', '2008-09-03', '1971-06-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (075895, 'Martha M. Patterson', '1996-10-16', '1953-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707787, 'Joshua F. Mills', '1998-11-23', '1981-10-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (976501, 'Cynthia A. Rice', '2006-01-16', '1988-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (667378, 'Joshua Adams', '2018-12-29', '1978-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (238847, 'Ruth O. Diaz', '2010-07-24', '1971-07-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (957774, 'Carol Lee', '2001-05-17', '1977-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (037151, 'Laura A. Owens', '2011-04-17', '1972-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872864, 'Jonathan K. Simmons', '2014-06-02', '1994-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (160767, 'Douglas F. Torres', '1997-10-10', '1954-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798784, 'Walter H. Bell', '2002-01-16', '1968-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777075, 'Lisa P. Clark', '1994-05-20', '1949-10-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (397468, 'Joe Jones', '1998-04-08', '1965-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886445, 'Anthony N. Diaz', '2017-04-12', '1987-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787787, 'Helen Z. Myers', '1994-07-22', '1977-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837391, 'Martha S. Carter', '1991-04-29', '1968-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870775, 'Brenda V. Wright', '2012-03-25', '1979-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (176286, 'Margaret A. Gonzalez', '1998-12-03', '1982-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (567828, 'Betty Romero', '1990-07-19', '1974-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (568558, 'Brenda T. Vargas', '2007-10-19', '1978-10-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (448925, 'Frances M. Johnson', '2011-07-08', '1969-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (755518, 'Karen Murphy', '2000-06-18', '1969-08-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (340694, 'Donna G. Howard', '2013-08-08', '1976-09-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (701731, 'Juan V. Harris', '2017-01-10', '1974-03-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (734190, 'Ryan N. Munoz', '1994-05-10', '1958-01-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777472, 'Robert U. Freeman', '2000-02-08', '1978-03-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (662208, 'Mary N. Smith', '2000-03-19', '1960-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (557879, 'Keith Q. Robertson', '1994-06-03', '1959-07-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (974518, 'Gerald L. Sanchez', '2002-01-19', '1984-04-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077287, 'Donna Hayes', '1999-01-06', '1969-12-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737862, 'William K. Brown', '2007-03-14', '1982-05-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (595193, 'Eric I. Ford', '1991-06-03', '1959-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (924780, 'Virginia L. Griffin', '1994-09-18', '1951-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (487870, 'Paul T. Chavez', '2004-10-18', '1964-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (176025, 'Jennifer U. Gonzalez', '2005-01-01', '1977-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (647082, 'Larry U. Black', '1997-06-08', '1981-08-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (518678, 'Dorothy D. Stewart', '2004-09-06', '1984-10-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (932126, 'Joshua W. Sullivan', '2008-10-04', '1988-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772777, 'Jonathan Ford', '2006-06-07', '1972-02-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087977, 'Brian C. Owens', '2018-10-15', '1997-05-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (122564, 'Sandra Long', '2005-08-30', '1963-09-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (027839, ' Q. Taylor', '2014-11-14', '1989-01-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (649107, 'Joshua F. Simmons', '2018-10-20', '1987-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872447, 'Anna Gibson', '1997-03-29', '1980-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (427398, 'Catherine N. Lopez', '2016-02-05', '1983-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (701373, 'Kathleen Stevens', '1994-06-13', '1968-02-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (376708, 'Stephen L. Vargas', '2015-02-11', '1993-02-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (974663, 'Richard E. Ortiz', '2016-09-23', '1979-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827268, 'Anna K. Bell', '1998-11-29', '1958-02-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (472286, 'Gary Walker', '1996-11-01', '1952-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (983787, 'Marie A. White', '1994-03-19', '1951-01-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (331976, 'Sharon F. Nichols', '1993-09-06', '1954-01-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788178, 'Richard Meyer', '1996-08-06', '1956-08-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (079985, 'Betty G. Hamilton', '2004-02-18', '1987-10-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (767028, 'Lisa L. Hill', '2015-06-23', '1973-11-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (241401, ' L. Henry', '2008-01-13', '1972-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (495865, 'Frank Q. Mason', '1997-02-10', '1975-05-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (419405, 'Shirley N. Perry', '1994-03-17', '1975-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (823628, 'Walter T. Vargas', '2017-12-04', '1987-06-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (576655, 'Keith M. Reed', '1994-09-08', '1969-05-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (848573, ' Q. Carter', '2007-08-17', '1983-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (428975, 'Mark T. Hill', '1997-10-10', '1979-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (001727, 'Nancy I. Russell', '2004-04-10', '1971-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (626787, 'Douglas L. Watson', '2003-06-22', '1984-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (422318, 'Henry Q. Murphy', '1993-08-08', '1969-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877722, 'Matthew Fernandez', '2010-05-18', '1967-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (368578, 'Daniel W. Mills', '2008-03-09', '1968-03-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788537, 'Marie O. Jenkins', '2003-02-16', '1968-11-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178975, 'Paul N. Vasquez', '1995-04-15', '1952-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (267827, 'Andrew A. James', '2017-08-06', '1991-08-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (378489, 'Edward M. Bell', '2016-04-25', '1985-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778890, 'Nancy G. Mason', '2015-10-02', '1984-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (758701, 'Robert Griffin', '1999-02-15', '1979-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (348388, 'Dorothy P. Fernandez', '1991-04-22', '1966-02-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077472, 'Walter I. Perry', '1995-04-07', '1977-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (182208, 'Ronald G. Weaver', '1991-11-01', '1950-11-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (099375, 'Carolyn J. Sullivan', '2016-12-10', '1999-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (649023, 'Paul S. Mitchell', '2000-01-24', '1976-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (497487, 'Joshua A. Russell', '1995-11-09', '1954-10-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (871865, 'Debra U. Long', '2012-01-07', '1985-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875977, 'Catherine G. Brown', '1999-01-12', '1969-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (552726, 'Arthur B. Wallace', '1995-04-16', '1951-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (204477, 'Roger O. Ramirez', '2005-10-27', '1964-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (064740, 'Lisa Dixon', '2006-09-28', '1966-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (121497, 'Larry E. Brown', '1995-02-21', '1979-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (418602, 'Frank P. Mason', '2012-12-24', '1995-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (976178, 'Jason E. Weaver', '1991-08-11', '1969-11-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (618837, 'Kevin L. Snyder', '2005-08-04', '1980-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (868497, 'Scott J. Barnes', '2011-10-15', '1979-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (267527, 'Patrick U. Gonzales', '2006-06-29', '1964-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (237918, 'Joseph X. Fisher', '2018-02-08', '1994-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (882477, 'Larry Hamilton', '1992-10-18', '1974-12-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (843171, 'Daniel J. Rose', '1993-06-10', '1972-11-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (337975, 'Paul Z. Harris', '1996-02-02', '1971-07-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (748608, 'Laura Cox', '2000-11-05', '1960-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870086, 'Terry H. Morales', '1994-04-28', '1949-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (715894, 'Frank K. Nguyen', '1993-08-11', '1970-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780709, 'Patricia G. Graham', '2014-09-27', '1974-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772807, 'Ronald H. Thompson', '2000-04-21', '1962-06-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (072141, 'Sarah V. Woods', '2016-06-03', '1998-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (566558, 'Nancy M. Wood', '1993-03-18', '1961-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (539878, 'Jessica Hernandez', '1999-03-31', '1955-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757777, 'Peter T. Gordon', '1992-09-29', '1954-11-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (286154, 'Marie Baker', '2008-04-23', '1976-06-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (047678, 'Brenda Black', '2003-12-05', '1972-06-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (814884, 'Elizabeth Jackson', '1997-11-25', '1958-12-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578707, 'Robert S. Mendoza', '2009-12-16', '1986-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (444041, 'Elizabeth F. Woods', '1996-06-30', '1969-09-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (675362, 'Karen S. Ruiz', '2006-12-04', '1989-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (621378, 'Karen Stephens', '1997-07-15', '1960-11-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (921831, 'Andrew Hall', '1996-07-15', '1978-11-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786126, 'Joshua G. Munoz', '2012-07-31', '1994-02-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077937, 'Justin M. Allen', '2017-01-06', '1998-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (628818, 'Virginia V. Perez', '1998-06-01', '1957-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (095740, 'Gary B. Turner', '2007-02-20', '1968-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788861, 'Donald E. Holmes', '1992-03-23', '1970-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (980885, 'Jeffrey Hicks', '2010-05-10', '1984-02-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (194321, 'Margaret Z. Woods', '1999-11-17', '1956-12-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787961, 'Edward M. Owens', '2019-05-20', '1999-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677774, 'Michelle Q. Lewis', '1993-05-27', '1961-10-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (846858, 'Carol T. Burns', '1992-01-28', '1960-06-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (471790, 'Gerald Jordan', '2018-01-03', '1977-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (317877, 'Anna M. Smith', '2009-12-04', '1979-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (318767, 'Samuel E. Romero', '2000-06-23', '1978-08-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (783357, 'Eric D. Gomez', '2011-06-21', '1973-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (917245, 'Lawrence U. Holmes', '2014-03-24', '1977-04-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (017851, 'Dorothy Guzman', '1996-11-08', '1968-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (889911, 'Sarah Ruiz', '1995-05-10', '1971-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (557787, 'Harold A. Robinson', '2016-04-10', '1992-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (567401, 'Scott Alexander', '1995-05-03', '1970-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774951, 'Juan Q. Black', '1991-02-07', '1973-06-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (215813, 'Jack Q. Vargas', '2012-10-19', '1979-10-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (874104, 'Douglas Hamilton', '2014-05-29', '1979-08-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (805898, ' Rice', '2016-06-04', '2000-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (848170, 'Kenneth M. Ramos', '1992-03-02', '1961-02-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777430, 'Susan R. Kennedy', '2011-02-01', '1987-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (347787, 'Carl C. Carter', '2005-11-16', '1967-10-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (537079, 'Brenda I. Jenkins', '1990-08-22', '1958-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (895828, 'Lawrence Hughes', '1996-04-19', '1954-05-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587384, 'Roger H. Parker', '2011-11-18', '1972-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780736, 'Carl L. Cruz', '2005-10-19', '1985-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (113238, 'Amy D. Morales', '1990-01-03', '1966-07-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (972746, 'Anthony F. Green', '1995-06-27', '1967-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (784838, 'Melissa D. Howard', '1992-06-25', '1966-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (445387, 'Carl U. Bennett', '1998-09-29', '1960-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757973, 'Patricia Burns', '2006-02-04', '1965-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (809740, 'Jack Taylor', '1996-10-11', '1980-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (580572, 'Jonathan Palmer', '1994-03-26', '1959-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (993267, 'Joe Moreno', '1990-07-19', '1971-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (726713, 'Walter G. Simpson', '1999-02-09', '1964-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (760404, 'Donald H. Hall', '1992-03-01', '1965-03-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (750022, 'Raymond Thompson', '2015-07-30', '1991-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (024896, 'Patrick P. Cole', '1990-03-12', '1967-03-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178937, 'Joe L. Boyd', '2000-02-23', '1964-12-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (129528, 'Michelle Thompson', '1994-08-16', '1968-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (337827, 'Cynthia G. Hamilton', '2013-08-18', '1996-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (165812, 'Christine L. Gibson', '1990-07-26', '1964-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798028, 'Deborah I. Owens', '1996-04-05', '1969-07-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (710671, 'Peter V. Russell', '1996-07-24', '1970-03-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (628778, 'Stephanie M. Gonzales', '2018-07-24', '2001-11-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (005471, 'Stephen A. Jones', '2014-07-07', '1979-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (173239, 'Ronald G. Freeman', '1995-05-28', '1970-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730673, 'Cynthia L. Murray', '1997-10-21', '1980-02-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (916778, 'Christine V. Stewart', '2001-08-13', '1974-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (299857, 'Sarah N. Hayes', '2014-12-25', '1995-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (841701, 'Pamela Kim', '2008-04-29', '1963-09-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (731665, 'Donald F. Gonzalez', '1992-05-14', '1968-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (388760, 'Dorothy A. Nelson', '1997-10-14', '1975-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870169, 'Kathleen Myers', '1991-07-02', '1948-09-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578579, 'Jason X. Butler', '1996-11-25', '1962-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786133, 'Paul R. Baker', '1995-08-17', '1961-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (370770, 'Walter H. Henderson', '1993-10-29', '1951-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (547557, 'Frances Russell', '2007-06-24', '1970-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (433720, 'Donna T. Phillips', '2011-01-18', '1993-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (836671, 'Edward U. Ortiz', '2013-05-20', '1995-06-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (419130, 'Ronald A. Parker', '1998-10-27', '1971-05-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (486268, 'Kathleen N. Wagner', '1996-06-22', '1955-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (882557, 'Donald Q. Gonzalez', '2010-05-21', '1982-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798073, 'Carolyn A. Scott', '2019-12-09', '1983-03-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (998673, 'Dennis J. Bennett', '1993-06-06', '1948-10-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877875, 'Thomas H. Cruz', '2015-05-13', '1986-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (750725, 'Kathleen I. Mills', '1992-07-31', '1973-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (113244, 'Timothy Russell', '1997-05-25', '1956-06-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (068600, 'Janet Z. Wells', '1998-05-28', '1972-04-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787874, 'Sandra M. Gordon', '2009-04-27', '1992-02-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727833, 'Frank J. Cruz', '2007-07-16', '1964-01-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (637812, 'Angela D. Flores', '2012-06-30', '1992-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (820542, 'Barbara U. Rogers', '2019-09-06', '1977-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (589357, 'Andrew M. Hernandez', '2017-12-30', '1998-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (791836, 'Marie Scott', '2009-09-21', '1987-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (667499, 'Terry V. West', '2007-01-14', '1970-04-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (437860, 'Eric V. Tran', '1994-12-25', '1967-12-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (824431, 'John Z. Graham', '1993-02-07', '1967-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (845781, 'Scott Holmes', '2010-10-11', '1984-08-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (791936, 'Marie H. Green', '2013-03-10', '1985-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (082801, 'Jack Q. Tran', '1996-10-30', '1970-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782738, 'Stephen S. Porter', '1997-07-02', '1953-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (784772, 'Terry Washington', '1991-03-27', '1961-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (172785, 'Cynthia D. Munoz', '1991-06-05', '1962-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (974831, 'Eric Q. Meyer', '2012-12-27', '1992-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (000102, 'James S. Bailey', '1990-12-15', '1946-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872880, 'Linda Martinez', '1990-03-21', '1958-10-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (418778, 'Michelle Hill', '2004-06-05', '1986-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (874711, 'Brenda G. Woods', '2011-01-30', '1966-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786147, 'Jessica T. Wilson', '2018-09-09', '1991-12-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (975716, 'Scott U. Shaw', '1996-07-22', '1976-06-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677878, 'Walter Fernandez', '1991-01-31', '1968-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587687, 'Daniel H. Wallace', '2017-08-27', '1978-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779737, 'Jerry C. West', '1995-07-03', '1976-10-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (029899, 'Kimberly Ferguson', '2019-07-13', '1974-07-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (670886, 'Michelle C. Cook', '1995-08-13', '1970-06-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (623572, 'Barbara M. Wright', '2007-03-03', '1990-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775479, 'Daniel Q. Ryan', '2006-03-16', '1963-01-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (937751, 'Susan W. Perez', '1999-07-19', '1961-09-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (861703, 'Nicholas L. Reynolds', '2001-02-08', '1963-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (445087, 'Frank L. Murray', '1991-03-02', '1972-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (698178, 'Peter Garcia', '2002-01-18', '1985-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (738781, 'Dorothy Ruiz', '1999-06-10', '1965-06-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (176787, 'Elizabeth G. Ellis', '2002-06-30', '1975-09-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (450457, 'Karen T. Reyes', '2016-07-04', '2000-01-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (364788, 'Nancy Cruz', '2005-07-06', '1988-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (373707, 'Walter L. Harrison', '2016-05-05', '1988-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (222878, 'Dorothy J. Green', '1990-11-21', '1973-03-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797801, 'Lawrence R. Schmidt', '2017-06-03', '1996-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (720764, 'Carolyn A. Medina', '1994-03-30', '1949-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (807367, 'James J. Long', '1994-09-04', '1978-08-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (687791, 'Kathleen P. Fisher', '1995-08-29', '1975-01-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (689722, 'Cynthia Wells', '2002-12-05', '1985-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (873034, 'Sarah P. Rice', '2019-04-08', '1980-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (879497, 'Lisa G. Foster', '1994-01-22', '1965-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (520062, 'Sarah U. Guzman', '1999-09-04', '1982-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (710678, 'Juan R. Nelson', '1994-12-09', '1950-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781791, 'Gregory R. Ferguson', '1993-07-15', '1951-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (371417, 'Frank Lee', '2012-10-06', '1996-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (247748, 'Samuel Reynolds', '1993-06-19', '1950-10-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (286721, 'Ruth I. Martin', '1997-10-06', '1954-11-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (321927, 'Cynthia K. Kennedy', '2018-06-21', '1990-07-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (455577, 'Kathleen S. Reed', '2013-12-10', '1989-03-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (739977, 'Brian R. Jordan', '2008-02-18', '1966-05-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (937716, 'Sandra U. Simpson', '2007-12-28', '1991-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (575709, 'Maria Soto', '1992-11-06', '1962-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677465, 'James Shaw', '2018-01-23', '1974-03-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776698, 'Ann Z. Coleman', '2012-04-05', '1984-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (217737, 'Walter Taylor', '1991-08-17', '1965-02-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (724726, 'Keith O. Burns', '1995-05-11', '1964-06-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877447, 'Edward F. Meyer', '2008-11-20', '1985-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (579773, 'Amanda Patterson', '2005-01-17', '1985-03-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888944, 'Carl D. Tucker', '1993-03-26', '1964-04-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (820788, 'Jerry O. Tran', '2003-04-06', '1971-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (322794, 'Virginia Gray', '2007-09-13', '1970-07-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (729600, 'Samuel Soto', '1991-11-27', '1971-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (158687, 'Matthew J. Scott', '1993-01-13', '1972-02-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887756, 'Laura S. West', '1997-06-20', '1980-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747547, 'Daniel Stewart', '2005-05-09', '1961-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (670757, 'John Peterson', '2005-11-29', '1977-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678678, 'Janet U. Simpson', '2013-05-14', '1989-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888748, 'Donald K. Adams', '1993-10-14', '1973-04-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (849857, 'George I. Hayes', '1999-06-22', '1983-06-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (274701, 'John Z. Watson', '2009-03-27', '1973-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (281171, 'Shirley T. Mason', '1994-09-25', '1964-02-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775777, 'Terry R. Rice', '1991-02-10', '1962-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (366584, 'Albert Wilson', '1999-03-30', '1968-06-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (960904, 'Carl I. Warren', '1993-02-08', '1952-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (028479, 'Joshua B. Hunt', '1999-09-04', '1958-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (873287, ' Z. Thompson', '2000-07-06', '1963-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377887, 'Marie U. Clark', '1998-03-25', '1970-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (078072, 'Pamela O. Evans', '2019-08-02', '1995-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (867826, 'Stephanie Bennett', '2004-11-06', '1974-04-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876781, 'Frances I. Medina', '2018-05-23', '1985-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (711278, 'Douglas F. Henry', '1991-02-09', '1946-07-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (438079, 'Jonathan B. Torres', '1994-02-03', '1964-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (367108, 'Paul Ellis', '2015-02-06', '1991-09-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (017579, 'Edward R. Foster', '2004-09-08', '1978-06-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (007334, 'Carolyn Jimenez', '2005-10-19', '1968-07-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (731877, 'Joe Ramos', '2007-05-15', '1980-01-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (713074, 'Amy Z. Ellis', '2013-04-09', '1970-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707077, 'Jose C. Daniels', '2007-07-15', '1985-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (473747, 'Maria Griffin', '2015-06-25', '1982-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (146976, 'Christopher S. Griffin', '2007-05-06', '1983-06-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (457308, 'Timothy Wilson', '2005-07-17', '1962-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (016275, 'William Wells', '1997-07-08', '1973-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (188383, 'Debra B. Anderson', '2000-03-16', '1966-11-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (873271, 'Pamela C. Powell', '2012-05-19', '1984-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (968899, 'Jose Bailey', '1995-03-26', '1975-12-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (370558, 'Paul U. Munoz', '2003-01-18', '1982-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878038, 'Susan A. Aguilar', '1997-03-22', '1975-08-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (980747, 'Kimberly P. ', '1998-07-15', '1958-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (179153, 'Angela I. Carter', '2003-10-03', '1959-11-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (060378, 'Betty P. Fox', '1997-05-29', '1964-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (966532, 'Barbara N. Griffin', '2015-05-06', '1987-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798547, 'Ann M. Evans', '2002-01-08', '1964-02-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (574844, 'Debra M. Rose', '1990-05-25', '1955-07-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (175878, 'Samuel K. Simmons', '2003-07-01', '1961-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (957736, 'Raymond Guzman', '2006-05-29', '1976-06-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875288, 'Jessica P. Perry', '1998-02-28', '1981-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707675, 'Kimberly L. Hernandez', '1995-05-15', '1958-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (387774, 'Joe S. Jackson', '2009-05-26', '1990-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797194, 'Stephanie Washington', '1993-03-16', '1951-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (371111, 'Debra F. Reyes', '2013-09-30', '1993-02-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (290823, 'Virginia A. Tran', '1998-05-10', '1955-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (199679, 'Albert Morris', '1993-01-21', '1957-01-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (941865, 'Carol H. Ryan', '2001-01-27', '1962-12-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (967852, 'Anthony C. Phillips', '2007-03-22', '1989-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757630, 'Gary F. Baker', '2009-03-01', '1988-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688297, 'Dennis Q. Smith', '2003-10-25', '1964-06-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (834759, 'Catherine King', '2017-09-07', '1988-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (662272, 'Kimberly U. Wallace', '2010-10-26', '1990-12-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772110, 'John L. Baker', '1999-06-17', '1976-11-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (617477, 'Joe U. Perry', '1990-09-23', '1965-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (665759, 'Larry Cruz', '2016-02-08', '1995-01-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (811507, 'Lisa L. James', '2008-03-11', '1970-05-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (793980, 'Stephanie V. Mendoza', '1997-10-04', '1962-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (478382, 'Frances U. Turner', '1999-08-24', '1975-01-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (947072, 'Virginia H. Harrison', '1995-09-18', '1967-10-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (783835, 'Pamela Hernandez', '2010-06-29', '1986-03-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (749581, 'James V. Johnson', '1996-11-27', '1976-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (274927, 'Charles V. Rivera', '2007-09-03', '1977-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (309023, 'Angela T. Snyder', '1994-06-08', '1970-09-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (437312, 'Michael H. Coleman', '2018-04-07', '1973-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (656737, 'Donna L. Patel', '1996-06-18', '1969-12-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (841172, 'Dorothy K. Reynolds', '2003-08-30', '1966-12-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (704809, 'Nicholas Perry', '2017-08-19', '1990-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (710829, 'Angela C. Woods', '2015-05-05', '1985-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778663, 'Anthony U. Walker', '2006-09-29', '1984-05-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (575183, 'Carol Rivera', '2009-11-18', '1979-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (447840, 'Robert X. Taylor', '2015-09-03', '1982-10-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (891468, 'Marie A. Burns', '1995-08-04', '1958-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (098867, 'Michael V. Young', '2009-11-19', '1989-10-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827792, 'Matthew B. Long', '2015-06-07', '1987-08-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (818753, 'Dorothy H. Evans', '2000-01-09', '1970-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727014, 'Lisa Mendez', '1990-02-06', '1951-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (847987, 'Janet Diaz', '2001-03-31', '1980-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (286024, 'Joshua V. Williams', '2007-05-11', '1980-02-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (404686, 'Stephen R. Diaz', '1999-04-05', '1958-06-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (108597, 'Deborah Russell', '2013-05-04', '1989-02-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747700, 'Roger N. Miller', '2000-12-29', '1973-10-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (237518, 'William X. Ramirez', '1995-11-28', '1964-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (881835, 'Jason G. Fox', '2006-01-28', '1964-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (381964, 'Barbara R. Gonzales', '1999-05-05', '1965-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788749, 'Margaret B. Ross', '2013-05-24', '1975-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (079489, 'Robert O. Kelly', '2013-12-26', '1970-04-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (637757, 'Brian P. Castro', '2017-02-12', '1989-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (973887, 'Donald N. Ward', '2000-05-14', '1967-08-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (094771, 'Frank R. Jones', '2012-09-11', '1979-02-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (608957, 'Raymond L. Cox', '2019-12-01', '1993-03-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678558, 'Shirley O. Ryan', '2004-10-06', '1960-04-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (817778, 'Anna Q. Herrera', '1998-03-09', '1954-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (468263, 'Peter K. Reynolds', '1996-04-12', '1958-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872472, 'Linda Z. Black', '2015-02-17', '1981-04-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (184386, 'Kevin Perry', '1991-11-11', '1949-02-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (225938, 'Terry K. Moreno', '2014-07-05', '1979-05-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (570878, 'Edward K. Meyer', '1993-08-20', '1953-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (009074, 'Ruth Q. Ellis', '1997-07-20', '1968-10-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (679025, 'Melissa J. Holmes', '2016-12-02', '1979-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827770, 'Joe A. Palmer', '1992-08-01', '1960-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (481187, 'Edward J. Gordon', '1996-02-14', '1969-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (796783, 'Ryan J. Morgan', '1993-02-23', '1966-09-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787218, 'Eric L. Phillips', '2010-02-14', '1987-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (745641, 'Dorothy J. Murphy', '2002-08-04', '1979-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (937687, 'Melissa C. Lewis', '1991-06-04', '1956-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (018787, 'Joseph E. Bryant', '2004-12-24', '1984-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177938, 'Janet J. Rice', '1995-11-17', '1960-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (961277, 'Roger Martin', '1997-04-13', '1952-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (307700, 'Laura B. Mason', '2015-12-20', '1990-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (268506, 'Amy U. Schmidt', '2016-04-23', '1989-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (930821, 'Deborah G. Patterson', '2012-02-24', '1990-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (756186, 'Cynthia K. Jordan', '2011-04-21', '1974-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (208777, 'Joseph H. Herrera', '1995-12-22', '1954-05-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (556670, 'Jessica Morgan', '2003-04-24', '1971-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (101714, 'Sharon Q. Patel', '1999-12-25', '1983-10-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (588351, ' W. Gonzales', '1998-07-06', '1978-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (184266, 'Lawrence I. Fernandez', '1992-08-20', '1968-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788563, 'Lisa Reynolds', '2017-03-16', '1973-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (169476, 'Ryan Freeman', '1994-09-15', '1971-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (990872, 'Melissa B. Lopez', '1990-09-23', '1959-07-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (447638, 'Frances Bell', '1992-11-30', '1968-01-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (004784, 'Shirley Kim', '1994-07-25', '1950-11-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771773, 'Deborah Q. Barnes', '1996-02-23', '1973-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (891277, 'Carl L. Rice', '1993-06-22', '1954-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (576171, 'Jessica U. Coleman', '1992-10-31', '1961-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878976, 'Patricia I. Medina', '1996-01-17', '1957-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (110379, 'Maria N. Palmer', '2016-01-26', '1974-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747813, 'Patrick V. Perry', '1995-01-27', '1962-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780891, 'Sharon S. Kelly', '2006-04-24', '1969-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (340742, 'Donna P. Collins', '1997-10-18', '1979-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (913887, 'Timothy P. Mitchell', '2015-05-18', '1997-12-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (748037, 'Cynthia S. Evans', '1991-12-03', '1953-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788776, 'Joe Mendez', '1994-01-14', '1972-01-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (793124, 'Elizabeth F. Stephens', '2012-08-31', '1995-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (755692, 'Amy Q. Garza', '1997-01-26', '1960-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877282, 'James White', '1994-03-24', '1957-05-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886942, 'Raymond J. Hunt', '1994-11-01', '1979-01-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (183584, 'Charles C. Herrera', '2019-04-18', '1975-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (167288, 'Albert H. Hicks', '1992-03-04', '1950-09-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (060719, 'Barbara W. Aguilar', '2019-11-21', '1987-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (767080, 'John Hill', '1998-11-01', '1967-06-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (447883, 'Sarah P. Baker', '1996-07-26', '1960-07-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (112264, 'Steven Stephens', '1993-12-09', '1972-05-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786788, 'Jeffrey C. Williams', '2017-08-23', '1982-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (375417, 'Gary J. Lopez', '2009-12-27', '1970-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (883797, 'Robert H. Kim', '1991-05-20', '1961-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (785018, 'Joshua Z. Harris', '2010-09-10', '1975-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (987877, 'Anthony A. Reyes', '2003-11-29', '1976-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (919948, 'Justin G. Mendez', '1993-04-13', '1963-10-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (404315, 'Kathleen Rose', '2008-08-25', '1972-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777887, 'Stephen F. Ward', '2001-09-11', '1985-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (789782, 'Kenneth M. Warren', '1993-07-28', '1954-12-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875653, 'Anna P. Rodriguez', '2016-10-29', '1983-11-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (399778, 'Thomas D. Guzman', '1991-11-13', '1966-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (284288, 'Laura F. Murphy', '2005-09-19', '1967-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (480775, 'Christine Ramirez', '2008-10-22', '1983-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678171, 'Brenda B. Alexander', '2003-01-09', '1964-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077445, 'Cynthia G. Rice', '1997-08-21', '1953-02-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (988237, 'Frank Long', '1997-11-23', '1979-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (223375, ' Myers', '2016-01-28', '1974-09-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (739777, 'Pamela Morgan', '2009-03-27', '1982-05-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (848977, 'Gary B. Diaz', '1991-01-31', '1961-11-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (173135, 'Susan H. Hunt', '1996-01-01', '1969-06-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (650877, 'Gerald T. Ellis', '1996-12-16', '1968-01-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (207977, 'Paul O. Shaw', '2007-05-16', '1973-06-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775417, 'Brenda Mendoza', '1990-09-21', '1951-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (414278, 'Harold Q. Foster', '1997-02-20', '1957-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (288872, 'Richard I. Chen', '1994-10-18', '1952-01-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (389084, 'Peter Ramos', '2019-04-20', '1974-11-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (808956, 'Walter Peterson', '2013-08-09', '1985-05-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (989034, 'Donald Castillo', '1999-08-25', '1965-06-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (687737, 'Mark Reyes', '2007-03-03', '1983-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (848835, 'Raymond Warren', '1994-12-02', '1957-11-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (133818, 'Deborah W. Brown', '2019-02-18', '1986-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887272, 'Patrick H. Martin', '2013-09-14', '1992-01-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377847, 'Albert T. Gordon', '2016-11-30', '1983-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (017787, 'Shirley O. Cooper', '1997-05-20', '1966-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878308, 'Carolyn S. Ryan', '1997-04-04', '1978-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707746, 'Gregory R. Stewart', '2009-01-10', '1966-03-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087784, 'Margaret Q. Cruz', '1996-11-03', '1969-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (871778, 'Christopher O. Fisher', '2006-07-12', '1969-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (889230, 'Andrew M. Foster', '1997-05-29', '1956-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (638837, ' F. Castillo', '2004-07-27', '1986-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (372478, 'Kevin L. Palmer', '1998-06-18', '1958-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (192732, 'Patricia K. Rose', '1990-10-25', '1948-03-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (540086, 'Helen Romero', '1999-09-28', '1974-04-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (481723, 'Gary R. Ford', '1999-04-05', '1968-08-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (893827, 'Dennis J. Gonzalez', '1992-04-29', '1964-12-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (838670, 'Ronald L. Green', '2016-07-06', '1987-03-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770532, ' Tran', '2009-04-01', '1971-06-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782685, 'Rebecca H. Mcdonald', '2019-07-12', '1978-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (930667, 'James Z. Turner', '2019-03-19', '1995-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787888, 'Jack Alvarez', '2006-11-09', '1963-01-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (088727, 'Harold I. Washington', '2006-05-22', '1963-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (871188, 'Andrew X. Silva', '2015-02-23', '1980-04-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (388814, 'Barbara Kennedy', '2005-04-16', '1986-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (676948, 'Kevin Robinson', '2010-04-03', '1974-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718388, 'Melissa Hunt', '2003-06-05', '1981-05-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (410768, 'Patricia B. Patel', '2008-06-24', '1987-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (074441, 'Jose Robinson', '2012-11-09', '1968-12-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (058517, 'Ryan X. Graham', '1991-02-10', '1953-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771927, 'Justin E. Castro', '2016-04-24', '1989-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (947027, 'Brenda U. Williams', '2019-06-02', '1986-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (119717, 'Anna Ortiz', '1991-02-25', '1947-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (411487, 'Gerald Rivera', '1991-03-15', '1965-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (701433, 'Andrew Rogers', '2018-07-14', '2000-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (709886, 'Christopher H. Fox', '1991-11-16', '1968-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877391, 'Stephanie B. Flores', '2010-03-16', '1970-03-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (213771, 'Charles F. Salazar', '1998-03-22', '1972-12-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (180864, 'Jennifer O. Dixon', '1991-04-14', '1966-03-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (427586, 'Janet Castro', '2000-03-13', '1964-02-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (200595, 'Jason Ellis', '2006-04-04', '1977-09-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (305034, 'Albert F. Reynolds', '1990-06-08', '1968-03-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877762, 'Barbara N. Dixon', '1999-05-30', '1969-05-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (684520, 'Eric Z. Ryan', '2012-02-02', '1973-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (472817, 'Christine L. Lewis', '2016-12-09', '2000-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (120931, 'Nancy Mendez', '1999-02-14', '1964-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177838, 'Carol Q. Allen', '2019-12-12', '1984-07-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (579779, 'Ralph I. Washington', '2012-08-26', '1979-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727078, 'Steven Q. Cox', '1992-10-03', '1965-08-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (271770, 'David G. Mills', '2000-07-27', '1981-04-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (741207, 'William Graham', '1993-02-17', '1954-03-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (993675, 'Marie V. Wallace', '1997-01-31', '1978-01-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (307937, 'Margaret X. Watson', '2010-05-14', '1983-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (632973, 'Lisa W. Reynolds', '1998-12-06', '1982-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (667077, 'Jerry V. Davis', '2011-04-14', '1991-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087307, 'Edward Morales', '2000-08-03', '1965-03-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087881, 'Nancy E. Fox', '2010-05-24', '1993-05-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (585788, 'Catherine Z. Porter', '1992-10-26', '1970-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (065405, 'Angela J. Olson', '1998-08-19', '1957-01-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (859824, 'Arthur C. Scott', '2011-04-14', '1975-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774788, 'David P. Robertson', '2018-10-31', '1976-10-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (438787, 'Jason L. Kelly', '2007-11-15', '1963-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (508783, 'Charles I. Chavez', '1994-05-12', '1967-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (031074, 'Jonathan Castillo', '2005-03-25', '1988-02-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177757, 'Steven K. Gibson', '2012-04-08', '1973-09-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (570377, 'Cynthia C. Graham', '1991-08-05', '1956-01-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (811567, 'Brian F. Nichols', '2005-01-19', '1966-09-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777380, 'Stephanie Z. Mendez', '1999-05-09', '1961-03-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178707, 'Dennis V. Palmer', '2013-07-06', '1990-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (262267, 'Catherine U. Garcia', '1993-04-03', '1950-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (733770, 'Richard M. Taylor', '2001-04-05', '1971-01-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (572748, 'Kathleen T. Harris', '2006-12-15', '1966-03-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (666767, 'Henry A. Martinez', '1997-09-18', '1971-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (765727, 'William S. Fox', '2013-09-25', '1985-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771344, 'Jerry I. Mendez', '1997-10-19', '1969-05-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (833087, 'Brenda Q. Hayes', '1995-02-27', '1956-04-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (375692, 'Brian F. Crawford', '2013-06-17', '1981-11-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (265777, 'Joe F. Jackson', '1993-12-19', '1951-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (257897, 'Carol Allen', '2000-02-14', '1959-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718277, 'Frances G. Daniels', '1993-05-29', '1971-06-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773794, 'Susan Mendoza', '1998-08-11', '1970-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (835288, 'John Taylor', '1999-07-27', '1964-06-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (736878, 'Mary S. Martinez', '1996-10-08', '1955-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (977761, 'Frank S. Ford', '1995-02-20', '1974-07-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757834, 'Angela Nichols', '1999-10-20', '1969-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (364572, 'Karen W. Ramos', '1992-08-26', '1972-06-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (894424, 'Jack H. Graham', '2009-12-07', '1985-10-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (992223, 'Jerry Kelly', '1999-07-24', '1974-01-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (746070, 'Sandra O. Mendez', '2011-04-09', '1980-05-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (627973, 'Robert J. Clark', '1994-05-08', '1962-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (767217, 'Gary B. Cox', '2005-01-12', '1965-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (695127, 'Mark G. Stephens', '1996-12-22', '1980-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (570117, 'Pamela U. Scott', '2017-04-03', '2001-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (461078, 'George C. Hamilton', '2008-06-11', '1984-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (689938, 'Betty X. Miller', '2014-05-18', '1994-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (447275, 'Kevin O. Garcia', '1994-07-25', '1968-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (532943, 'Nicholas C. Alvarez', '2003-03-25', '1973-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (710877, 'Paul Thomas', '2006-06-22', '1968-11-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (608373, 'Anna U. Marshall', '1998-02-11', '1971-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877760, 'Nancy R. Vasquez', '2011-09-01', '1975-06-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (532787, 'Lisa O. Bailey', '2014-04-16', '1998-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786887, 'James G. Mendez', '1997-09-12', '1969-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (615801, 'John W. Bryant', '1991-05-11', '1947-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277312, 'Jonathan A. Silva', '2002-02-23', '1984-11-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (314847, 'Harold Q. Price', '2003-03-08', '1984-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (696107, 'Carolyn T. Kennedy', '1994-07-28', '1968-11-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (698899, 'Laura K. Porter', '1992-03-17', '1974-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (447537, 'Stephanie W. Tucker', '2018-04-02', '1976-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (059735, 'Helen U. Simmons', '2005-09-05', '1969-11-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (168331, 'Christine R. Harrison', '1998-12-31', '1972-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837758, 'Kenneth L. Kennedy', '2017-05-02', '1999-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787540, 'Nicholas A. Richardson', '2004-08-07', '1972-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (248666, 'Betty A. Fisher', '1998-08-20', '1962-03-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777278, 'Anna H. Hicks', '2005-10-22', '1979-08-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (889457, 'Pamela Tucker', '1999-02-15', '1969-03-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (398268, 'Laura O. Williams', '1991-08-21', '1947-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (247724, 'Carl V. Wright', '1993-10-27', '1954-05-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (398099, 'Daniel R. Miller', '2006-11-15', '1972-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (785807, 'Dennis W. Gray', '2004-07-07', '1981-07-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (808777, 'Andrew Morales', '1997-09-13', '1956-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (647838, 'Shirley C. Reynolds', '1994-11-07', '1965-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (053973, 'Stephanie R. Palmer', '2015-04-04', '1994-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737486, 'Terry B. Nelson', '2006-03-27', '1989-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787878, 'Catherine L. Freeman', '1999-10-14', '1956-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (733359, 'Raymond Johnson', '2002-10-03', '1975-09-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (745785, 'Susan A. Meyer', '2016-01-22', '1993-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (537789, 'James S. Wright', '1996-09-12', '1973-08-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (018143, 'Timothy F. Price', '2019-10-15', '1975-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (246040, 'Willie Fernandez', '2006-05-13', '1986-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (390918, 'Douglas Rodriguez', '2012-05-18', '1991-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (487974, 'Cynthia K. Cooper', '1997-09-03', '1967-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887482, 'Henry Barnes', '2018-03-02', '1988-02-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777784, 'William Barnes', '2019-10-22', '1990-12-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (419015, 'Ronald P. Owens', '1996-03-24', '1976-04-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876079, 'Juan Shaw', '2007-12-20', '1965-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (844455, 'Amy Roberts', '1993-11-25', '1949-10-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (729783, 'Janet J. Rose', '2011-04-03', '1987-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778529, 'Jack C. Bryant', '1994-04-25', '1963-11-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177859, 'George B. Smith', '1994-06-12', '1955-07-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (103377, 'Maria O. Reyes', '1996-10-03', '1960-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770869, 'Christine Castro', '1999-07-30', '1959-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (700057, 'Margaret D. Perez', '2002-08-20', '1967-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737772, 'Michael L. Roberts', '2012-04-13', '1969-06-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727572, 'Melissa Coleman', '1992-09-05', '1962-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778748, 'Carl T. Soto', '1990-05-25', '1955-12-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798693, 'Brenda Cook', '1998-04-13', '1963-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (187735, 'Scott X. Wright', '1999-06-01', '1959-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (657553, 'Catherine V. King', '1999-02-13', '1965-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (882578, 'Jessica B. Bennett', '2000-06-08', '1982-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (789758, 'Larry W. Kelly', '1992-12-15', '1952-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (898546, 'Jonathan G. Crawford', '1992-02-26', '1973-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772804, 'Charles X. Dixon', '2003-06-09', '1965-02-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (849784, 'Jeffrey Q. Shaw', '1998-07-19', '1963-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (124704, 'Lawrence N. Olson', '1996-12-14', '1979-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (980678, 'Martha W. Ford', '1995-07-06', '1978-04-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (117829, 'Karen Ross', '2016-08-23', '1981-09-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (900877, 'Donna F. Simpson', '2002-03-01', '1983-10-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (416833, 'Jose Meyer', '1995-07-13', '1973-03-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (784527, 'Christine U. Campbell', '1994-09-01', '1971-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170247, 'Jeffrey X. Perry', '2007-05-11', '1976-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (272747, 'Ralph W. Patel', '2006-01-19', '1987-03-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (235028, 'Cynthia J. Boyd', '2008-03-19', '1988-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (409573, 'Debra J. Phillips', '1997-08-19', '1981-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (483147, 'Janet G. Tucker', '1999-04-20', '1973-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (088377, 'Kimberly T. Russell', '2000-10-17', '1976-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876987, 'Virginia Z. Crawford', '2000-09-15', '1958-01-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (007393, 'Dennis Z. Robertson', '1993-03-06', '1970-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (731353, 'Keith C. Shaw', '1995-07-07', '1967-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (309921, 'Douglas I. Murray', '1993-11-18', '1963-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778876, 'Patrick U. ', '2005-03-23', '1969-12-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077355, 'Sharon K. Allen', '1993-08-11', '1954-10-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (844388, 'Samuel Henry', '1994-10-07', '1977-07-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (873741, 'Amanda O. Reyes', '2010-03-05', '1976-03-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (235887, 'Lawrence E. Stephens', '1993-04-26', '1962-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (273370, 'Ann L. Sullivan', '2015-12-09', '1971-06-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (363861, 'Timothy Edwards', '2019-12-10', '2003-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (700935, 'Debra W. Rivera', '1998-03-05', '1960-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (726155, 'Christopher Reynolds', '1995-04-24', '1971-12-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (451789, 'Elizabeth D. Hunter', '2010-12-25', '1981-05-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277637, 'Joe X. Hall', '2016-11-08', '1988-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (910850, 'Juan J. Mendez', '1999-04-08', '1972-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (863905, 'Ralph S. Mitchell', '2000-06-05', '1975-10-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (532704, 'David W. Jordan', '1993-03-15', '1967-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (278128, 'Shirley Henderson', '2010-01-17', '1969-09-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779587, 'Paul N. Rodriguez', '2010-07-13', '1979-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (275070, 'Jason C. Ryan', '1993-11-01', '1949-12-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (744531, 'Cynthia A. Simmons', '2004-11-08', '1988-01-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (270747, 'James L. Stephens', '1994-07-14', '1966-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (394047, 'Ralph Allen', '1999-02-16', '1957-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (753838, 'Shirley U. King', '1998-11-20', '1966-01-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788152, 'Janet Adams', '2014-12-15', '1995-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776743, 'Henry B. Morris', '2004-12-05', '1976-11-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (657670, 'Frank K. Cooper', '2015-01-24', '1985-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (445797, 'Deborah J. Marshall', '2010-12-30', '1989-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (184883, 'Pamela Hayes', '2016-12-17', '1990-08-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (768033, 'Marie W. Romero', '2011-09-03', '1987-09-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (803737, 'Andrew D. Mendoza', '2007-05-08', '1964-06-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (337825, 'Laura Q. Reed', '1991-08-31', '1947-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477074, 'Carol L. Wells', '1996-04-27', '1971-03-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (804404, 'Jose V. Lee', '2011-07-28', '1992-11-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877230, 'Joe Ramos', '2001-05-24', '1968-01-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (347156, 'Karen W. Anderson', '2011-12-14', '1993-09-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (616275, 'Amy M. Holmes', '1994-11-28', '1976-02-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (655285, 'Harold L. Weaver', '1993-03-24', '1972-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (756609, 'Jack O. Campbell', '2003-10-31', '1967-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (784660, 'Ralph Vasquez', '2005-07-07', '1968-01-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777753, 'Jonathan Alexander', '1994-03-18', '1975-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (729682, 'Susan F. Hayes', '1998-11-04', '1965-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (769650, 'Kevin D. Fisher', '2013-12-30', '1995-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (899046, 'Christine L. Hughes', '2013-11-20', '1980-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678042, 'Anthony M. Meyer', '2014-01-26', '1992-05-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (098417, 'James C. Bailey', '2013-01-04', '1990-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (186769, 'Jennifer C. Flores', '1991-08-31', '1965-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (720907, 'Thomas C. Bennett', '1994-02-27', '1960-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170238, 'Peter O. Vargas', '1998-12-13', '1960-05-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (262082, 'Lawrence K. Romero', '2003-04-02', '1986-03-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887619, 'Henry Thompson', '1994-03-25', '1977-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (806485, 'Lisa Reyes', '2013-03-07', '1976-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (697517, 'Stephanie M. Baker', '2018-02-28', '2001-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (967959, 'Douglas Holmes', '2016-09-20', '1997-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (179686, 'James L. Ruiz', '2010-06-25', '1976-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (898722, 'Ryan Q. Carter', '2013-07-15', '1989-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (793193, 'Susan Patel', '1997-11-16', '1966-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477789, 'Frank Bell', '2019-12-16', '1986-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (864724, 'Patricia E. Soto', '2011-06-06', '1990-10-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (866907, 'Daniel U. Stone', '1990-05-18', '1970-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (069877, 'Jason X. Daniels', '1995-05-10', '1965-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887578, 'Kenneth P. Carter', '2018-08-03', '1976-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (237287, 'Paul I. Wilson', '1998-11-28', '1977-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771332, 'Mark I. Cole', '1995-09-27', '1958-03-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777455, 'Henry T. Boyd', '2003-09-04', '1968-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (155557, 'Rebecca Coleman', '1996-04-02', '1958-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (970075, 'Patricia K. Olson', '1993-06-13', '1964-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (310180, 'Janet H. Martinez', '1990-10-30', '1968-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (927285, 'Melissa L. Romero', '2009-11-28', '1984-02-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (884794, 'Kathleen O. Castro', '2008-09-10', '1977-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (257567, 'Steven Black', '1998-04-10', '1960-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (147772, 'Dennis A. Stone', '2002-10-03', '1962-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377718, 'Matthew O. Salazar', '1997-10-03', '1963-07-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (478771, 'Jason L. Rivera', '1994-11-25', '1961-09-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (346181, 'Virginia D. Fox', '1995-06-29', '1951-06-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (810722, 'Ralph L. Anderson', '1990-09-16', '1965-04-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (764186, 'Betty H. Mendoza', '2003-03-28', '1982-06-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747487, 'Maria U. Romero', '2010-10-19', '1981-11-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (874880, 'Sarah Snyder', '2013-07-01', '1969-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778486, 'Joe L. Gomez', '1994-09-02', '1968-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377562, 'Sharon C. Jordan', '1994-06-24', '1966-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (848898, 'James Wright', '1996-03-24', '1969-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (473078, 'Donald Daniels', '2015-04-04', '1972-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (557983, 'Virginia Bailey', '2014-01-28', '1970-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778761, 'Jennifer Medina', '1997-03-09', '1966-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (799068, 'Rebecca Z. Griffin', '1990-07-31', '1953-03-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (685767, 'Michael F. Munoz', '2008-09-03', '1971-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (404989, 'James D. Warren', '1999-10-30', '1971-11-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (755876, 'Raymond P. Mendoza', '1993-06-28', '1967-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (588846, 'Christopher W. Davis', '1991-02-19', '1950-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (714127, 'Peter U. Webb', '2009-10-27', '1986-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (430854, 'Melissa F. Alexander', '2018-07-10', '1987-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (307733, 'Virginia S. Perry', '1993-06-26', '1953-08-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (921621, 'Jeffrey X. Freeman', '1996-02-20', '1970-07-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (078989, 'Pamela K. Black', '2000-01-01', '1964-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (685678, 'Lisa I. Harrison', '1990-10-22', '1949-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (733799, 'Albert V. Collins', '2005-01-14', '1985-02-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (598477, 'Helen G. Murphy', '2018-09-20', '1994-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (884218, 'Justin O. Henderson', '1999-07-24', '1983-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (117217, 'Thomas U. Palmer', '1995-06-05', '1976-02-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (861398, 'Arthur Graham', '2002-08-23', '1969-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (074777, 'William P. Shaw', '2008-03-21', '1979-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (711997, 'Dennis U. Rice', '1991-03-16', '1963-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170697, 'Harold E. Nelson', '1995-05-31', '1961-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (765997, 'David L. Romero', '1994-01-04', '1957-03-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (011574, 'Edward Stewart', '2007-12-13', '1974-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (583793, 'Arthur Q. Thompson', '2008-05-07', '1975-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886420, 'Frank Reynolds', '2000-08-20', '1969-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (012567, 'Martha O. Stone', '2019-10-06', '2003-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (978113, 'Jessica B. Rodriguez', '2013-12-08', '1973-04-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (357787, 'Amanda Diaz', '1995-08-23', '1954-09-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (258808, 'Karen Coleman', '2019-07-18', '1987-07-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (817635, 'Paul L. Vasquez', '2009-02-26', '1968-08-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (986118, 'Richard O. Henry', '1996-12-28', '1963-02-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (760751, 'Raymond R. Weaver', '1995-11-22', '1965-09-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (831763, 'Paul W. Stone', '2017-09-19', '1997-10-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (715037, 'Jose Robinson', '2003-05-25', '1969-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (415787, 'Sandra U. Hunter', '2007-03-04', '1988-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (572667, 'Jonathan A. Chen', '2003-04-16', '1981-08-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (804289, 'Anna Peterson', '1997-05-11', '1959-01-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (607212, 'Douglas Aguilar', '1991-02-23', '1972-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (218687, 'Robert X. Long', '2005-09-15', '1980-03-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (465857, 'Thomas Sanders', '2003-11-30', '1971-10-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (987946, 'Justin Alexander', '1996-02-09', '1956-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781889, 'Elizabeth E. Ellis', '2014-04-12', '1989-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (380383, 'Sandra X. Ruiz', '2010-06-06', '1970-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775571, 'Ralph Medina', '2000-02-11', '1974-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (479878, 'Thomas C. Stephens', '1997-07-31', '1973-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (937177, 'Charles X. Stevens', '2017-06-09', '1975-08-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (654457, 'Michael F. Boyd', '1992-04-06', '1964-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (278858, 'Carolyn H. Ferguson', '2015-06-06', '1978-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888654, 'Gerald Q. Burns', '2002-08-25', '1984-06-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (278403, 'Jessica A. Gomez', '1999-07-26', '1979-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788255, 'Kenneth B. Alexander', '2005-05-01', '1960-08-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (768548, 'Jeffrey Freeman', '1993-01-30', '1949-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (405889, 'Ryan J. Meyer', '2004-05-22', '1981-10-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (967876, 'Margaret Soto', '1994-05-10', '1955-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (007025, 'Juan Foster', '1997-12-24', '1955-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775577, 'Deborah Hamilton', '2002-08-20', '1970-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (369358, 'Roger G. Ramos', '2005-03-08', '1963-10-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (803767, 'Paul U. Lewis', '1995-01-25', '1955-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (821777, 'Samuel T. Fox', '2010-07-05', '1993-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (799778, 'Stephen Nguyen', '1995-12-05', '1966-09-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (070707, 'Nicholas E. Harris', '2010-10-14', '1977-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708678, 'Linda R. Snyder', '1995-08-10', '1972-09-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (224050, 'Jose Brooks', '1992-05-28', '1964-09-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (961898, 'Pamela Simpson', '2006-03-19', '1970-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781707, 'Andrew T. Hunt', '2001-03-07', '1982-05-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077280, 'Janet U. Reed', '1995-04-01', '1974-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (858988, 'Donald Palmer', '2001-09-24', '1968-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178752, 'Jerry L. Powell', '2003-08-02', '1981-11-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (731888, 'Laura H. Roberts', '1994-10-31', '1957-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (917871, 'Jose Z. Mason', '2002-10-05', '1982-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798477, 'Lisa E. Anderson', '2005-06-20', '1985-06-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730557, 'Karen U. Ellis', '2016-08-01', '1990-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775388, 'Carl Brooks', '1990-10-25', '1969-08-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (634418, 'Frances Holmes', '1995-03-19', '1961-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (601748, 'Lawrence D. Edwards', '1998-01-04', '1964-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (272178, 'Martha C. Castro', '2005-12-01', '1977-10-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779758, 'Sandra N. Ferguson', '2010-08-01', '1992-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (102197, 'Joseph R. Russell', '2008-09-04', '1988-10-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728378, 'Edward Watson', '1992-01-05', '1954-05-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779476, 'Douglas J. Russell', '2000-08-07', '1976-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577585, 'Karen D. Munoz', '2003-07-23', '1979-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (548070, 'George I. Roberts', '2018-01-24', '1999-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (657803, 'Scott F. Ryan', '2010-02-19', '1982-06-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (917774, 'Dorothy I. Fernandez', '2006-05-17', '1974-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (118996, 'Scott O. Thompson', '1996-01-04', '1970-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (342705, 'Elizabeth U. Robertson', '1990-07-26', '1973-08-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577451, 'Kathleen Morales', '1994-07-18', '1972-03-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (185547, 'Samuel Morgan', '1992-04-10', '1963-05-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (117830, 'George Vargas', '1996-06-10', '1968-09-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (754287, 'Brian S. Meyer', '2007-09-01', '1976-08-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (488891, 'Anthony O. Williams', '1999-08-25', '1969-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (948185, 'Jennifer Fisher', '2012-07-24', '1989-04-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837478, 'Gregory B. Allen', '1991-07-30', '1949-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787777, 'Amy G. Patterson', '2011-07-05', '1972-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678230, 'Paul Z. Fernandez', '2003-12-30', '1960-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (865178, 'Scott Q. Gibson', '2005-05-15', '1977-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (762318, 'Kimberly L. Turner', '1997-09-27', '1967-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (591886, 'Stephanie E. Tucker', '2017-01-09', '1996-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (949189, 'Betty D. Foster', '1993-01-30', '1953-12-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (218772, 'Melissa I. Rogers', '1991-02-19', '1968-04-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (927163, 'Maria C. Marshall', '2010-10-17', '1988-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (815817, 'Mary Rose', '2011-08-31', '1982-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (128217, 'Mark Anderson', '1996-10-17', '1954-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (703771, 'Anthony U. Nelson', '2014-01-11', '1982-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771176, 'Charles Fernandez', '1998-06-14', '1971-06-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (588897, 'William P. Burns', '2014-07-20', '1982-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (008777, 'Larry W. Patel', '2002-09-17', '1959-04-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (339457, 'Margaret T. Russell', '2003-08-28', '1985-07-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (703472, 'Anna L. Brown', '2012-06-09', '1983-07-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887737, 'Kenneth P. Soto', '2012-05-18', '1976-06-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770782, 'Maria Coleman', '1997-04-22', '1961-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (992065, 'Ruth Q. Clark', '1995-12-13', '1954-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (520746, 'Kevin Q. Davis', '2015-08-31', '1999-02-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (427661, 'Amanda C. Diaz', '2006-09-25', '1962-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (898771, 'Stephanie K. Webb', '2018-07-13', '1990-09-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (868558, 'Cynthia R. Ortiz', '1992-08-28', '1962-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277317, 'Margaret V. Myers', '2014-07-14', '1998-07-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (671433, 'Edward E. Murphy', '2017-09-02', '1992-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (086089, 'Patricia Perez', '2007-10-27', '1976-11-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (163586, 'Martha V. Butler', '2003-05-07', '1972-12-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (185149, 'Samuel L. Warren', '1999-03-04', '1969-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (139797, 'Jerry Castillo', '2006-05-26', '1980-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (414470, 'Kathleen R. Rose', '1991-04-04', '1964-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (374787, 'Paul M. Romero', '1998-09-14', '1957-02-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708480, 'Daniel Patterson', '1996-10-30', '1980-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (376251, 'Peter Mendoza', '2014-03-27', '1991-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (048711, 'Donna Powell', '1998-08-11', '1960-03-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (486429, 'Margaret Peterson', '1995-02-13', '1958-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (671982, 'Elizabeth U. Ford', '1992-09-27', '1950-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (193864, 'Linda C. Gomez', '1991-01-05', '1954-02-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (488747, 'Jason F. Tran', '1995-11-22', '1958-05-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (981777, 'Karen C. Miller', '1999-12-27', '1969-07-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677282, 'Laura B. Hunt', '1997-09-25', '1971-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (401708, 'John X. Reyes', '2018-10-16', '1995-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (495783, 'James B. Ryan', '1995-09-17', '1973-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (045877, 'Maria R. White', '1997-11-24', '1964-09-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (485449, 'Ryan L. Meyer', '1996-12-07', '1976-12-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (565249, 'Marie K. Robinson', '1996-11-03', '1956-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (548777, 'Susan Crawford', '2012-08-20', '1982-04-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (614377, 'Albert C. Watson', '1993-05-11', '1959-05-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (881177, 'James K. Shaw', '1995-08-21', '1952-06-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (273723, 'Ann G. Fox', '2016-01-28', '2000-03-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (227766, 'Eric L. Jackson', '1995-05-04', '1959-04-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877924, 'Susan T. Murphy', '1990-08-13', '1958-04-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (396291, 'Christopher S. Myers', '2005-05-10', '1962-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (347072, 'Walter Cruz', '1990-02-18', '1966-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (056878, 'Deborah Reyes', '1998-04-16', '1961-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (576177, 'Matthew Hunt', '1997-09-23', '1976-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872878, 'Arthur G. Stevens', '1991-05-27', '1947-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (085137, 'Dennis N. Hill', '1997-07-05', '1960-12-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (524778, 'Joshua F. Butler', '1995-11-11', '1979-01-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747267, 'Charles Morris', '1998-11-15', '1976-08-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788712, 'Christine V. Marshall', '2019-09-30', '1987-11-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677584, 'Stephanie Simmons', '1995-08-01', '1974-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (361725, 'Jennifer Q. Roberts', '2006-12-15', '1967-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788721, 'Elizabeth D. Gomez', '1990-01-31', '1957-08-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (981347, 'Henry X. Mills', '1991-09-17', '1971-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (188751, 'Jessica Q. Sullivan', '2006-12-25', '1983-01-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (548310, 'Harold Z. Thompson', '1996-07-23', '1952-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888427, 'Douglas Fisher', '1996-01-03', '1953-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (971743, 'Betty P. Reynolds', '2018-06-29', '1977-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737774, 'Juan I. Castro', '1994-01-26', '1972-07-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (671717, 'Joshua V. Simmons', '2018-08-09', '1984-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (386144, 'Terry Kim', '2003-12-01', '1987-08-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (740629, 'Donna R. Adams', '2019-12-06', '1988-02-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (418210, 'Peter Price', '1999-06-10', '1975-11-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (738450, 'Raymond Tran', '1995-12-23', '1966-01-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (609129, 'Stephanie Castillo', '2017-10-17', '1979-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (197374, 'Carolyn Z. Ryan', '1990-02-22', '1961-09-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (569737, 'Richard Butler', '2002-03-02', '1982-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737538, 'Jonathan X. Schmidt', '1997-03-27', '1970-11-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (385975, 'Kevin P. Hernandez', '2014-09-09', '1994-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (982703, 'William G. Sullivan', '1994-01-13', '1974-10-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (597178, 'Donald S. Foster', '1996-01-18', '1951-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (576289, 'Deborah U. Garza', '1993-08-02', '1977-09-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (907158, 'Catherine I. Vargas', '2001-05-01', '1985-04-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (509433, 'Matthew A. Harris', '2008-09-23', '1985-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (676819, 'Roger E. Sullivan', '2011-03-21', '1988-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787359, 'Larry Munoz', '2013-01-05', '1978-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (299577, 'Ann H. Hamilton', '2009-02-28', '1974-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (366702, 'Martha Q. Morris', '1991-05-05', '1965-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (497307, 'Carl U. Parker', '1992-02-07', '1971-01-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (853367, 'Eric G. Foster', '1997-11-15', '1979-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (722885, 'Michelle T. Hill', '1999-09-09', '1974-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875886, 'Robert K. Rice', '1994-06-26', '1976-12-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (814186, 'Karen Reyes', '2006-03-22', '1984-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (130199, 'George P. Martin', '1996-08-29', '1956-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776757, 'Timothy V. Hernandez', '1998-01-24', '1956-02-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (603245, 'Laura P. Lewis', '1991-04-25', '1975-03-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (167835, 'Kathleen Boyd', '1997-09-04', '1972-10-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870707, 'Christine E. Rose', '2008-06-17', '1985-07-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (176438, 'Peter U. Gomez', '2004-01-01', '1967-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (585971, 'Joe T. Fisher', '2013-01-12', '1973-03-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (340332, 'Michelle J. Snyder', '2008-03-09', '1985-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (153582, 'Anthony Castillo', '1993-05-20', '1956-07-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (149077, 'Arthur J. Ross', '2008-02-19', '1972-12-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (568118, 'Steven Holmes', '1998-11-20', '1970-01-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (397282, 'Anna Z. Aguilar', '1990-10-22', '1966-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887355, 'Mark L. Sullivan', '2018-07-02', '1985-04-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877585, 'Christine H. Hernandez', '1991-07-29', '1965-10-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778742, 'Larry Morales', '1991-06-06', '1963-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787589, 'Linda Salazar', '1990-07-06', '1971-09-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (360760, 'Steven P. Mills', '2017-08-22', '1998-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (890814, 'Henry U. Woods', '1999-03-07', '1963-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (494621, 'Amanda Reed', '2001-03-06', '1966-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787884, 'Carolyn Boyd', '2012-07-04', '1972-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688178, 'Joshua Allen', '1992-08-15', '1957-10-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (133733, 'Daniel Boyd', '2011-12-15', '1985-10-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (100667, 'Deborah E. Foster', '2003-09-18', '1973-05-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (368341, 'Sandra W. Williams', '1999-05-19', '1975-06-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777727, 'Scott C. Mendez', '2016-02-11', '1984-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797684, 'Kenneth E. Jimenez', '2011-06-11', '1979-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (200857, 'Christine I. Owens', '2011-10-28', '1971-09-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (976050, 'Scott B. Perry', '1994-03-29', '1970-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (648760, 'Cynthia Reed', '2005-10-02', '1985-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178304, 'Keith A. Holmes', '1995-11-30', '1975-11-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (958717, 'Frances V. Bell', '1995-09-02', '1976-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730688, 'Edward O. Mitchell', '1990-02-12', '1967-04-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (017757, 'Gregory Powell', '1997-06-12', '1961-05-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (387825, 'Christopher E. Young', '2006-02-22', '1967-07-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (402957, 'Daniel X. Gonzales', '1997-06-08', '1959-02-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (760560, 'Peter B. Wells', '1995-02-11', '1951-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (756777, ' Wagner', '2013-01-18', '1979-01-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770737, 'Charles F. Morgan', '1991-07-28', '1965-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (432495, 'Cynthia B. Brown', '2004-07-25', '1978-11-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (293861, 'Christopher Cole', '2012-02-16', '1970-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (378401, 'Kevin Q. Gonzales', '2004-07-15', '1966-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (946922, 'Samuel Porter', '2005-03-05', '1974-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (158857, 'Robert Q. Marshall', '2005-01-11', '1984-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (175877, 'Juan Z. Patterson', '2001-09-15', '1968-10-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (947291, 'Steven X. Morris', '2004-07-05', '1969-09-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877853, 'Eric C. Myers', '1997-12-02', '1976-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777837, 'Jason Collins', '2002-11-16', '1960-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (433477, 'Gary M. Clark', '2010-10-02', '1982-01-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778634, 'Maria Meyer', '2018-05-27', '1996-04-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875069, 'Carolyn G. Hill', '1995-11-24', '1960-07-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774472, 'Lawrence A. Warren', '2003-11-20', '1976-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (035798, 'Juan Z. Collins', '1993-11-16', '1950-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (800734, 'Angela V. Ruiz', '2003-09-04', '1962-11-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787263, 'Gerald K. Smith', '2016-11-04', '1977-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708706, 'Ruth Dixon', '1998-06-17', '1960-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708734, 'Janet Wagner', '2001-09-16', '1973-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577359, 'Brian W. Gonzales', '2000-06-04', '1977-07-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077581, 'Stephanie Phillips', '1991-02-07', '1969-03-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779155, 'Maria A. Rice', '2001-01-24', '1970-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (209577, 'Daniel X. Morgan', '2006-01-28', '1983-01-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (455814, 'Daniel U. Hunt', '1998-03-11', '1954-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178404, 'Albert I. Gonzalez', '1999-09-10', '1961-05-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (485172, 'Joshua Mcdonald', '1993-10-25', '1959-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (895839, 'Kathleen G. Bennett', '1998-04-22', '1978-02-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (189503, 'Samuel S. Clark', '1991-03-18', '1963-05-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (275558, 'Stephen C. Ruiz', '1995-11-19', '1966-01-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (760779, 'Betty L. Mitchell', '2006-06-30', '1980-11-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (271740, 'Charles P. Roberts', '2013-04-04', '1974-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170513, 'Barbara L. Ellis', '1992-07-08', '1949-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (824885, 'Lawrence G. Diaz', '1995-07-31', '1962-09-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877781, 'Joseph Z. Alvarez', '2012-11-27', '1969-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (059869, 'Jessica O. Sullivan', '2003-07-24', '1983-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587511, 'James P. West', '2005-04-25', '1967-02-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (192773, 'Henry Johnson', '1993-06-28', '1953-05-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (039787, 'Lisa Q. Murray', '1990-07-31', '1955-09-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (224779, 'Larry Q. Howard', '2005-04-29', '1976-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (873876, 'Larry G. Adams', '2000-02-06', '1962-09-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (671432, 'Anna R. Hayes', '2002-07-27', '1977-09-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (844262, 'Arthur J. Wright', '1998-10-26', '1966-08-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677104, 'Andrew W. Ellis', '2018-05-05', '1983-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (257376, 'Nancy V. Fernandez', '1996-03-24', '1974-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (408137, 'Ann X. Burns', '1992-01-16', '1956-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (067587, 'Jerry Carter', '2010-04-16', '1991-04-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (090765, 'Shirley Howard', '2014-02-25', '1985-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (288064, 'Steven Wells', '2015-09-06', '1978-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (058940, 'Barbara U. Ellis', '2014-07-11', '1978-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857186, 'Jessica Hernandez', '2001-03-14', '1980-01-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (722812, 'David D. Castro', '1990-02-23', '1968-02-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (529631, 'Christine V. Cooper', '1993-07-04', '1967-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (884006, 'Jerry Q. Reed', '1993-10-06', '1967-06-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837685, 'Janet L. Myers', '1993-10-29', '1955-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (387856, 'Joe Wells', '1992-10-24', '1958-09-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (115753, 'Shirley R. Moreno', '1999-04-21', '1969-03-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (462849, 'Sandra B. Barnes', '1994-11-08', '1966-05-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (457517, 'Nancy U. Ward', '1995-06-17', '1957-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (244326, 'David B. Black', '2018-05-28', '1981-08-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (484904, 'Matthew R. Allen', '1997-06-14', '1981-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (879987, 'Debra Henry', '1990-07-08', '1958-10-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (989917, 'Terry T. Medina', '1997-05-02', '1972-07-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170787, 'Frances Patterson', '1991-07-03', '1974-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (979898, 'Raymond Graham', '1999-11-26', '1969-12-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (328485, 'Jeffrey G. Walker', '2005-04-05', '1963-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (487175, 'Joshua T. Wallace', '1993-03-29', '1948-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (745726, 'Carolyn I. Johnson', '2007-08-24', '1972-05-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (880371, 'Ralph L. Watson', '1997-04-11', '1960-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477779, 'Jennifer Aguilar', '2000-02-20', '1970-05-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (428348, 'Donald Taylor', '1996-08-05', '1979-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (683726, 'Margaret Henry', '2019-07-31', '1980-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (218475, 'George D. Reed', '1993-02-12', '1962-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477682, 'Rebecca L. Miller', '1998-07-18', '1982-04-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (553508, 'Sharon S. Moreno', '1999-05-23', '1973-08-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (054937, 'Carolyn L. Tran', '1990-04-21', '1947-12-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (703407, 'Joshua K. Schmidt', '2001-04-02', '1966-05-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (897830, 'Arthur Baker', '1998-07-01', '1974-06-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (350946, 'Carolyn G. Lopez', '2019-08-31', '1999-08-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (173773, 'Kevin U. Long', '2012-01-08', '1983-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (746167, 'Joe V. Harris', '1996-08-02', '1960-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (670575, 'Joe G. Stephens', '1997-04-14', '1969-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (033435, 'Debra L. Allen', '1997-04-10', '1956-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (918848, 'William L. Snyder', '2009-01-06', '1988-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781542, 'Amy Diaz', '2010-10-10', '1966-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728155, 'Joshua U. Mendoza', '1994-02-08', '1977-03-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887958, 'Christine B. Clark', '1994-08-23', '1965-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (981857, 'Gregory U. Moore', '2009-02-08', '1988-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688841, 'Willie X. Mendez', '2011-09-11', '1986-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (028478, 'Janet Martinez', '1998-07-24', '1980-04-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (738417, 'Justin Q. Hayes', '2014-03-07', '1971-03-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (373757, 'Frances O. Davis', '1997-08-08', '1954-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (924787, 'Jeffrey Mendoza', '2017-01-10', '1974-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (487755, 'Carol R. Ruiz', '2018-03-02', '1996-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (039997, 'Maria W. Murray', '2008-05-25', '1972-06-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (378282, 'Robert Ellis', '1992-12-07', '1966-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (152865, 'Jeffrey V. Robinson', '1990-02-16', '1947-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (437779, 'Melissa Flores', '1991-11-11', '1956-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (667937, 'Carl M. Carter', '1990-12-27', '1953-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (479544, 'Anthony A. Snyder', '2008-02-25', '1990-12-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (318387, 'Kevin Torres', '2003-11-28', '1986-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (755078, 'Ryan H. Roberts', '2003-08-28', '1964-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (753723, 'Henry G. Robinson', '1995-07-19', '1968-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (145279, 'Jerry U. West', '1998-05-05', '1954-06-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (866974, 'Angela X. Morales', '2005-03-09', '1971-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787318, 'John S. Patel', '1992-02-14', '1952-10-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (154061, 'Laura N. Stevens', '2000-05-15', '1972-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728682, 'George M. Russell', '2015-06-06', '1990-11-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772898, 'Christopher Rice', '2010-07-16', '1994-06-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (908932, 'Sharon Q. Medina', '1998-03-14', '1954-05-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (576408, 'Dorothy Nguyen', '2018-09-08', '1977-02-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (497944, 'Samuel L. Collins', '1996-03-15', '1972-04-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (291729, 'Terry Dixon', '1993-01-02', '1954-02-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (953247, 'Kenneth Vasquez', '1997-03-02', '1960-03-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771786, 'George B. Powell', '2006-04-21', '1988-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (767271, 'Donald O. Meyer', '1996-11-14', '1972-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (673755, 'Gary E. Sanders', '2008-08-17', '1980-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (897577, 'Michelle L. Robinson', '2014-04-28', '1997-08-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (668242, 'Albert Jackson', '2017-10-30', '1994-10-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (528847, 'Patrick H. Chen', '2013-09-16', '1973-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (278785, 'Gerald H. Kennedy', '2000-10-13', '1976-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (432835, 'Joseph V. Richardson', '2006-11-01', '1967-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778628, 'Margaret C. Ortiz', '1995-09-06', '1974-09-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (427435, 'Carl K. Watson', '2014-10-20', '1991-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (499772, 'Janet Perez', '2008-01-28', '1973-01-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (107784, 'Steven G. Brooks', '1993-04-25', '1966-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177073, 'David W. Jimenez', '1993-06-26', '1975-10-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (435759, 'Kenneth Tucker', '1997-02-23', '1960-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (898816, 'Gregory H. Ruiz', '1999-02-04', '1955-11-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775887, 'Douglas Bailey', '1997-05-15', '1976-09-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (405964, 'Ruth J. Bennett', '1995-11-06', '1965-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (527584, 'Frances Webb', '2007-03-30', '1964-03-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772473, 'Barbara Ramos', '1998-03-03', '1963-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (488829, 'Steven Fernandez', '1993-09-12', '1950-07-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (793177, 'John Ross', '1991-02-10', '1957-08-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (884489, 'Angela L. Gray', '2008-05-07', '1983-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (651908, 'Helen D. Martin', '2000-10-28', '1956-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (784274, 'Maria Aguilar', '2010-01-20', '1973-07-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (358387, 'Nicholas P. Crawford', '1990-12-05', '1956-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (749713, 'Larry S. Castillo', '2000-11-07', '1972-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (086067, 'Marie T. Black', '2005-02-02', '1962-09-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (370787, 'Daniel Griffin', '2007-12-07', '1963-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (541075, 'Carolyn B. Salazar', '2005-09-29', '1971-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (570776, 'Brian B. Torres', '2003-10-08', '1973-08-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (702777, 'William L. Nguyen', '1995-06-10', '1976-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577204, 'George A. Hamilton', '2015-09-08', '1978-06-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (264630, 'Janet B. Freeman', '1999-09-19', '1968-12-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (588747, 'Virginia W. Jordan', '2012-12-27', '1968-08-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (174811, 'Mary Foster', '1990-11-23', '1950-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778066, 'Walter C. Bell', '2011-03-27', '1993-04-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (858073, 'Laura I. Cruz', '1994-11-29', '1967-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770278, 'Christopher J. Tran', '2013-05-18', '1976-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (198237, 'Walter P. Castillo', '1992-04-29', '1966-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170978, 'Jeffrey Z. Patel', '2004-06-06', '1985-10-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (481497, 'David Perez', '2005-04-29', '1962-07-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (822767, 'Andrew Stewart', '2013-11-08', '1984-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (280779, ' Butler', '2005-05-19', '1985-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (874274, 'Lawrence C. Jimenez', '1992-03-27', '1975-02-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (750480, 'Sandra Young', '1999-11-25', '1981-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (992007, 'Walter U. Boyd', '1992-03-17', '1969-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (758270, 'George P. Taylor', '1995-10-15', '1978-12-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (147380, 'Jack R. Mendoza', '1990-12-21', '1973-09-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (581676, 'Helen Flores', '1995-09-01', '1955-03-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (719189, 'Kenneth Perry', '1998-06-02', '1981-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (375971, 'Thomas W. Harrison', '2009-05-17', '1967-07-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (948072, 'Terry Taylor', '1993-03-28', '1954-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788037, 'Kenneth L. Collins', '2003-06-23', '1979-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (858458, 'Michelle Rose', '2016-01-06', '1991-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778389, 'Timothy Phillips', '2011-01-22', '1971-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (156710, 'Betty N. Mitchell', '2001-07-03', '1962-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077762, 'Deborah A. Lopez', '1993-05-02', '1964-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577878, 'Debra U. Morris', '2013-03-05', '1976-05-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (985737, 'James N. Cooper', '2019-08-13', '1998-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (962038, 'Jonathan Moreno', '2001-08-14', '1976-06-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875704, 'Joe F. Thomas', '2018-04-04', '1994-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780827, 'Steven T. Simmons', '1993-09-28', '1972-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (379246, 'Rebecca D. Edwards', '2006-01-23', '1971-03-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (011382, 'Carolyn D. Owens', '2019-02-28', '2002-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (832731, 'Matthew A. Stone', '1993-07-20', '1970-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (810744, 'Anthony P. Edwards', '1993-06-16', '1950-08-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (866808, 'Patricia Kennedy', '1997-08-02', '1974-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (627179, 'Susan O. Herrera', '2015-04-01', '1978-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (847779, 'Nancy J. Wilson', '1998-01-13', '1981-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718417, 'Elizabeth F. Clark', '1991-01-24', '1972-01-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (894717, 'Joshua E. Wagner', '2005-04-18', '1972-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875521, 'Jeffrey Collins', '2012-03-03', '1970-02-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (703184, 'Rebecca X. Mcdonald', '1991-10-24', '1958-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (471781, 'Deborah W. Watson', '2013-12-13', '1977-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (408792, 'Anna J. Weaver', '1994-10-05', '1974-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (722778, 'David Fisher', '1993-09-08', '1971-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (173155, 'Joseph Mendez', '2011-09-30', '1974-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (762475, 'Barbara L. Gray', '2013-12-05', '1993-06-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747670, 'Amanda I. Torres', '2011-04-19', '1967-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718060, 'James F. Harris', '2004-07-05', '1965-10-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (847364, 'Lisa P. Mason', '1999-02-04', '1958-07-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (055771, 'Larry Adams', '2015-08-27', '1980-05-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (705897, 'Justin Salazar', '2005-05-04', '1976-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (722018, 'Walter V. Romero', '2003-11-11', '1961-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (572072, 'Carol Griffin', '2017-06-17', '1983-07-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (764738, 'Jose Z. Martin', '2013-02-17', '1995-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (271772, 'Jonathan Howard', '2013-10-10', '1976-07-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (340508, 'Maria T. ', '1999-12-02', '1983-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (977566, 'Ruth X. Reed', '1991-09-24', '1961-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782202, 'Edward S. Johnson', '2015-11-26', '1997-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (268707, 'Larry B. Stevens', '2006-10-10', '1975-10-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (540312, 'Frances U. Martin', '2018-08-14', '1995-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779289, 'Steven C. Evans', '1994-09-11', '1950-07-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (558187, 'Catherine I. Fisher', '1994-06-19', '1967-01-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (247823, 'Roger R. Gonzalez', '2001-02-26', '1957-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (054774, 'Pamela I. Edwards', '2016-05-04', '1990-11-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (247479, 'Dennis Alexander', '2004-03-27', '1967-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (139509, 'Ronald M. Ellis', '1990-11-28', '1946-12-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (785874, 'Paul T. Parker', '2009-06-02', '1983-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (192008, 'Kathleen Kim', '2017-09-24', '1972-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (299173, 'Linda F. Perry', '1999-09-08', '1974-10-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (715102, 'Peter S. Scott', '2016-06-08', '1994-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779228, 'Christopher U. Morris', '2008-12-23', '1990-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827151, 'Laura H. Webb', '1996-10-11', '1963-07-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (172765, 'Susan Bell', '2013-02-10', '1982-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (055765, 'Richard A. Palmer', '1995-04-07', '1971-04-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (647407, 'Melissa U. Gordon', '1996-09-24', '1958-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (270788, 'Jack Allen', '2001-10-21', '1963-05-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (867876, 'Amanda Marshall', '1997-05-09', '1964-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878875, 'Daniel B. Hunt', '1996-05-05', '1954-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788812, 'Frances T. Nelson', '2009-07-20', '1992-05-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (717077, 'Donald P. West', '1993-10-19', '1954-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (667021, 'Pamela Ruiz', '2018-08-06', '1996-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (734158, 'Mark Martinez', '2011-04-24', '1974-11-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (674935, 'Walter W. Henderson', '2011-06-23', '1986-11-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377786, 'Christopher D. Hall', '1995-07-15', '1973-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (258495, 'Melissa U. Davis', '2000-11-06', '1978-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (789327, 'Deborah H. Torres', '2004-08-19', '1965-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728618, 'Scott C. Bryant', '1996-04-18', '1960-11-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (754780, 'Debra P. Garza', '1999-07-01', '1966-08-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (484938, 'Catherine V. Hunt', '2017-07-04', '1998-09-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (196872, 'Maria F. Harris', '1998-07-04', '1974-07-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (918264, 'Lawrence Black', '1993-05-26', '1949-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277938, 'Juan Wallace', '2016-05-06', '1980-10-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771622, 'Juan W. Hamilton', '1992-07-03', '1967-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (455592, 'Willie U. Salazar', '2003-07-16', '1975-04-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (703894, 'Margaret Fernandez', '2013-04-01', '1971-09-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888474, 'Frances P. Alexander', '1994-07-07', '1956-05-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (308676, 'Dennis G. Gordon', '1993-07-13', '1955-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (118584, 'Martha F. Morgan', '2015-06-24', '1998-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (073898, 'Christopher N. Stevens', '2008-02-15', '1972-01-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (542777, 'Daniel J. Perez', '2006-12-07', '1990-02-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872351, 'John N. Watson', '1990-06-25', '1973-07-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (139357, 'Michael U. Kelly', '2012-06-10', '1974-12-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (575967, 'Susan Z. Clark', '2016-03-21', '1978-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (397589, 'Timothy X. Bell', '2012-03-01', '1982-06-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (093182, 'Frank Long', '2003-11-14', '1981-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (799851, 'Raymond G. Stewart', '1992-06-04', '1953-08-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (673938, 'Richard Rogers', '1993-04-14', '1970-05-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (989188, 'Richard X. Coleman', '1990-10-31', '1956-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (458145, 'Jonathan N. Jimenez', '1990-05-18', '1950-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (796899, 'Ronald F. Perry', '2004-07-02', '1979-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (633778, 'Marie I. Cooper', '1992-01-20', '1968-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (071387, 'Ruth U. Ramirez', '1999-12-18', '1970-01-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (258983, 'Mark P. Walker', '2006-09-21', '1963-10-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (580655, 'Terry Graham', '2014-10-07', '1970-03-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (412782, 'Barbara Collins', '2000-09-30', '1961-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (723676, 'Laura C. Crawford', '1999-11-16', '1958-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (725836, 'Jonathan D. Jimenez', '1997-02-26', '1967-04-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (740708, 'Kimberly Patterson', '2008-04-23', '1973-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (674776, 'Joe C. Martinez', '1995-01-18', '1967-01-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (704787, 'Betty G. Silva', '1991-06-19', '1959-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888470, 'Raymond W. Roberts', '2019-07-29', '1991-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (908547, 'Nancy Thomas', '2006-03-14', '1990-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (682289, 'Peter Weaver', '1999-03-15', '1971-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (956571, 'Mark P. Patterson', '2003-07-25', '1978-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (970789, 'Edward K. Graham', '1993-02-19', '1966-08-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (575670, 'Harold N. Foster', '1995-11-29', '1968-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677798, 'David H. Henderson', '1992-01-05', '1948-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (700937, 'Melissa B. Daniels', '2014-09-27', '1998-12-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (574788, 'Peter Mendez', '1995-11-01', '1956-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (897883, 'Betty S. Aguilar', '2015-09-09', '1976-12-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (793575, 'Jose Alvarez', '1996-06-24', '1976-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (390796, 'Brenda B. Gonzalez', '1992-11-18', '1950-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (834567, 'David T. Gonzalez', '2008-04-06', '1963-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (674785, 'Martha Ford', '2000-03-02', '1980-05-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776742, 'Ruth Flores', '2011-04-09', '1990-02-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (741869, 'Nicholas Moore', '1997-11-03', '1968-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (610424, 'Walter Foster', '2019-05-14', '1993-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087730, 'Ronald Cox', '1991-04-10', '1956-10-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (027774, 'Sarah F. James', '2003-10-08', '1970-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (487782, 'Margaret N. Marshall', '1997-03-19', '1972-04-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (596507, 'Brian Johnson', '1992-04-28', '1973-08-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (704659, 'Richard Z. Nelson', '2015-01-26', '1981-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (501470, 'Mary A. Burns', '2015-01-01', '1973-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (720734, 'Larry Williams', '2000-04-09', '1972-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (017077, 'Catherine S. Jenkins', '1995-03-04', '1957-09-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (457071, 'Timothy P. Nguyen', '2007-12-06', '1984-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (418070, 'Douglas M. Gray', '2011-11-25', '1976-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (988790, 'Sandra S. Moreno', '2015-09-21', '1983-12-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (297088, 'Raymond V. Flores', '2006-08-04', '1985-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (157787, 'Catherine C. Davis', '1990-06-15', '1953-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (078488, 'Martha B. Barnes', '1996-03-24', '1973-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (998757, 'Anthony N. Romero', '2016-11-23', '1975-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (681547, 'Jennifer Q. Salazar', '1992-11-03', '1965-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773989, 'Anna G. Ryan', '2008-04-07', '1972-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (585871, 'Susan B. Smith', '2004-10-27', '1974-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (118939, 'Lawrence F. Thompson', '1991-09-29', '1971-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (733895, 'Michael Parker', '2007-09-26', '1975-06-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (344077, 'Helen C. Simmons', '1991-08-24', '1953-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772848, 'Virginia D. Tucker', '1995-06-20', '1971-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (378637, 'Gerald V. Fox', '1993-05-21', '1975-07-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (856177, 'Betty Nguyen', '2010-01-26', '1985-05-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (105115, 'Shirley X. Marshall', '1992-04-07', '1950-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (791883, 'Shirley E. Wallace', '1997-02-24', '1970-10-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (011233, 'Stephanie G. Crawford', '1994-06-06', '1974-02-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870565, 'Paul T. Hunt', '2004-09-01', '1978-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (974263, 'Andrew A. Cole', '1997-10-07', '1953-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (339876, 'Cynthia A. Ramos', '2010-01-29', '1983-02-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (758537, 'Jack U. Daniels', '2002-03-25', '1969-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (625568, 'Nancy O. Carter', '1998-02-15', '1958-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (098338, 'Rebecca N. Jimenez', '2010-08-01', '1992-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (555120, 'Susan L. Johnson', '2007-09-22', '1979-08-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (459737, 'Dorothy O. Ramos', '2004-01-15', '1974-03-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (596508, 'Douglas Palmer', '2015-03-04', '1996-02-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888471, 'Kenneth P. Palmer', '1998-02-08', '1955-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (874981, 'Richard L. Mason', '2017-08-29', '1990-12-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779817, 'Amanda C. Ward', '2010-04-16', '1975-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (080992, 'Shirley Snyder', '1998-08-23', '1965-11-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (754281, 'Raymond Thompson', '2008-08-20', '1984-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (926807, 'Joshua Simmons', '2002-06-27', '1986-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (099284, 'Douglas K. Tran', '2011-01-19', '1990-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (278894, 'Mark X. Lewis', '1995-01-16', '1969-06-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (061647, 'Ann D. Webb', '2017-10-07', '1975-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (551983, 'Samuel Z. Boyd', '1997-02-09', '1978-07-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (071873, 'Jessica Gutierrez', '2014-09-29', '1991-09-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837271, 'Richard G. Reyes', '2002-08-17', '1963-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (341642, 'Douglas Shaw', '1991-05-25', '1970-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (343203, 'Ralph Q. Perez', '2002-08-13', '1970-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (226078, 'Jessica Walker', '2000-09-21', '1974-07-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (713768, 'Steven S. Porter', '2005-04-15', '1973-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708177, 'Susan N. Romero', '2009-09-05', '1987-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (119058, 'Henry S. ', '2000-10-19', '1976-11-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (994344, 'Richard Scott', '1995-10-11', '1971-11-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737717, 'Jose H. James', '1999-02-24', '1966-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (654794, 'Arthur U. Meyer', '2007-04-23', '1971-12-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587874, 'Jerry N. Bailey', '1993-06-13', '1965-03-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (534850, 'Betty Williams', '1999-04-24', '1955-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707597, 'Patricia T. Burns', '2008-08-15', '1971-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (508477, 'Amy A. Fernandez', '2012-05-30', '1967-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (448558, 'Keith I. Schmidt', '2014-06-28', '1997-06-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (617926, 'Linda A. Schmidt', '1997-06-04', '1957-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (884851, 'Keith N. Kim', '2007-02-09', '1975-09-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797788, 'Linda R. Nichols', '1994-06-29', '1977-02-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (702831, 'Larry Patterson', '1991-06-14', '1960-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (703789, 'Jose Guzman', '1991-09-21', '1948-04-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (050027, 'Ann B. Hicks', '2011-11-10', '1978-06-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (838958, 'Margaret Flores', '2003-04-09', '1963-04-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (686904, 'Steven M. Fernandez', '1997-07-04', '1955-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177570, 'Susan V. Diaz', '2011-06-27', '1991-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786367, 'Angela W. Vasquez', '1995-01-16', '1960-11-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (767969, 'Walter T. Graham', '1995-06-27', '1974-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757174, 'Michael P. Crawford', '2007-01-11', '1974-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (183228, 'Sandra H. Evans', '1994-05-20', '1956-03-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (359896, 'Joshua Cruz', '1998-08-02', '1955-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (207890, 'Edward U. Soto', '1990-06-10', '1954-12-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (428438, 'Frances Fernandez', '2001-04-17', '1984-04-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (623027, 'Mark Adams', '2017-09-20', '1979-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (393874, 'Ruth Q. Bennett', '1996-05-07', '1964-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (897887, 'Angela K. Robinson', '1991-03-23', '1971-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (579770, 'Melissa I. Bailey', '1992-04-10', '1959-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (475538, 'Margaret L. Snyder', '2009-02-03', '1971-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787384, 'Scott Jordan', '1994-07-14', '1963-07-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (478233, 'Carolyn A. Brown', '1996-06-14', '1954-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (489781, 'Betty L. Freeman', '2006-05-13', '1989-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (785278, 'Douglas V. Ramirez', '2013-07-11', '1996-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077518, 'Donald Ruiz', '2003-04-14', '1977-04-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777192, 'Brenda E. Fisher', '2018-08-20', '1989-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (743487, 'Patricia I. Mendez', '1991-01-25', '1963-02-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (448771, 'Christine L. Foster', '1998-11-30', '1956-10-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707457, 'Patricia F. Robinson', '2019-11-22', '1996-12-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (763113, 'Albert Z. Fisher', '2015-03-14', '1988-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (473501, 'Ronald G. Kim', '2014-09-02', '1998-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (229735, 'Jose Holmes', '1993-01-21', '1952-04-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (649276, 'Janet O. Clark', '2011-07-15', '1987-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (002517, 'Jerry L. Hicks', '1994-12-06', '1957-01-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (746128, 'Susan Freeman', '2012-03-29', '1983-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (545575, 'Harold N. Kennedy', '1993-02-08', '1956-02-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (753749, 'Dennis S. Anderson', '2007-04-07', '1987-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (097153, 'Paul M. Marshall', '2008-08-12', '1987-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782557, 'Robert Kelly', '1995-01-16', '1960-12-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (061767, 'Roger Wells', '1999-06-03', '1970-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773773, 'Barbara N. Alexander', '2011-05-18', '1972-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678159, 'Carol M. Cook', '1997-09-05', '1977-08-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077725, 'Brenda J. Wood', '2010-07-24', '1985-02-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (937768, 'Amy H. Black', '1999-01-25', '1983-01-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (139952, 'Barbara Green', '2017-01-09', '1985-03-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (027075, 'Carolyn Wallace', '2017-12-05', '1997-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708078, 'Anna P. Torres', '1997-01-31', '1967-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (952054, 'Anthony M. Moreno', '2002-07-12', '1985-09-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (531686, 'Joshua G. Rice', '1999-05-30', '1981-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (579303, 'Scott Shaw', '1990-11-05', '1972-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (817757, 'Harold Holmes', '1993-06-17', '1962-07-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (414837, 'Ruth V. Allen', '2012-01-31', '1982-01-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (472087, 'Betty H. Lopez', '1990-10-26', '1973-10-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (368528, 'Mark Edwards', '1995-12-22', '1958-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773465, 'Catherine V. Jackson', '2011-10-23', '1987-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747801, 'Matthew Bryant', '1997-03-27', '1977-10-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (143737, 'Justin Olson', '2006-03-25', '1990-02-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (769376, 'Peter Daniels', '1998-12-03', '1954-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (722856, 'Andrew U. Hill', '1994-06-06', '1973-08-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (066232, 'Jessica O. Freeman', '1998-05-13', '1981-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (173508, 'Raymond Martin', '1992-01-04', '1971-04-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (200791, 'Mary G. Schmidt', '1991-02-03', '1955-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777688, 'Amanda D. Gutierrez', '1991-02-06', '1971-06-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (572003, 'Matthew Wagner', '1994-02-17', '1958-03-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (724450, 'Jason Carter', '1999-02-25', '1970-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778487, 'Patricia N. West', '2019-01-03', '2000-12-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (439477, 'Rebecca X. Munoz', '1997-09-11', '1976-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (588998, 'Anthony X. Lewis', '2010-03-18', '1989-05-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (402733, 'Sarah X. Tran', '2014-08-20', '1970-05-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (847739, 'Anthony J. Allen', '1995-02-03', '1972-01-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (185888, 'Angela E. Henry', '1990-03-16', '1959-03-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (687799, 'Brian O. Murphy', '2017-07-24', '1983-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277932, 'Scott O. Robertson', '1990-08-04', '1956-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (351263, 'Larry Q. Jordan', '2000-11-23', '1979-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (689434, 'Amy H. Rivera', '2005-02-08', '1967-01-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779883, 'Lawrence Lewis', '1992-09-09', '1966-07-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707947, 'Ralph S. Tucker', '2016-06-13', '1978-10-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (104778, 'Keith Z. Mcdonald', '1995-04-25', '1952-06-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (105054, 'Catherine I. Brooks', '2013-10-08', '1984-06-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (260675, 'Jason G. Warren', '2003-12-23', '1976-01-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (185757, 'Ronald O. Baker', '2009-09-25', '1972-03-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (169219, 'Steven D. Gomez', '1992-03-08', '1949-11-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (187718, 'Janet S. Bennett', '2008-08-18', '1977-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (379496, 'Deborah B. Carter', '2016-03-22', '1978-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (197245, 'Sandra O. Snyder', '2000-06-02', '1963-07-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (801084, 'Joe L. Ellis', '2018-04-25', '1992-03-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (486953, 'Mary L. Price', '1995-08-21', '1965-10-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (238578, 'Elizabeth V. Robinson', '2007-11-28', '1990-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (983720, 'Charles K. Morgan', '2000-08-14', '1972-03-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477480, 'Jason L. Henderson', '1994-04-30', '1962-01-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (187877, 'Albert M. Parker', '2005-03-04', '1960-06-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688318, 'Nicholas J. Black', '2005-01-13', '1966-08-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (356107, 'Helen K. Snyder', '2014-01-03', '1996-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776378, 'Richard X. Adams', '1990-07-20', '1966-11-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (552622, 'Brian G. Nguyen', '2017-06-21', '1987-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (464747, 'Brian Gibson', '1997-04-23', '1971-07-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (224915, 'Linda Hunter', '2014-06-15', '1986-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (927788, 'Brian Simpson', '2012-04-16', '1991-07-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786289, 'Jack Woods', '2009-08-28', '1977-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077487, 'Frances Hill', '2000-04-07', '1966-11-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (671865, 'Edward H. Mason', '1993-08-27', '1967-10-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (273085, 'Paul Hill', '1993-05-31', '1962-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (783156, 'Dennis J. Gibson', '2006-05-21', '1962-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877708, 'Ronald Johnson', '1997-01-14', '1957-11-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (223288, 'Martha B. Kim', '2013-10-24', '1975-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (698480, 'Angela M. Campbell', '2017-01-12', '1994-04-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (899247, 'Karen Robertson', '1996-10-14', '1963-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (447278, 'Henry U. Cook', '1996-09-06', '1977-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (978730, 'Margaret Z. Munoz', '2008-03-08', '1975-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (580187, 'Sarah Anderson', '2010-07-24', '1992-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677227, 'Jerry N. Simpson', '1994-05-03', '1975-11-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (975747, 'Carl Cook', '1996-04-01', '1963-03-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (618943, 'Frank S. Gonzales', '2007-06-29', '1986-09-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (272892, 'Ruth R. Romero', '2002-12-15', '1963-12-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (395469, 'Frank N. Hunter', '2018-04-28', '1998-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (670817, 'Melissa W. Henry', '2009-12-17', '1965-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170748, 'Steven Ryan', '2016-08-16', '1995-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (218487, 'Andrew N. Meyer', '2013-08-23', '1976-02-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787789, 'Kevin Fox', '1995-09-17', '1978-05-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770400, 'Joe Miller', '1990-04-11', '1972-11-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (374208, 'Raymond G. Woods', '1996-01-30', '1962-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (709741, 'Maria P. Evans', '2010-05-04', '1993-07-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788728, 'Laura Hayes', '1993-02-28', '1951-06-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (631147, 'Terry V. Stevens', '2015-02-22', '1985-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (324565, 'Jose Q. Diaz', '2007-07-30', '1963-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (704368, 'Anna Herrera', '1995-09-05', '1953-11-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (346777, 'Patricia P. Gomez', '1994-03-21', '1950-06-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (551426, 'Carl O. Washington', '2008-09-15', '1984-06-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (522183, 'Dennis U. Barnes', '1996-07-24', '1959-07-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (386630, 'Marie I. Vargas', '1995-11-10', '1969-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (916977, 'Justin R. Clark', '2002-03-06', '1969-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578888, 'Dennis Bell', '1996-06-05', '1961-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (700477, 'Gregory L. Washington', '2002-01-14', '1979-04-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (759191, 'Ronald V. Thomas', '1995-08-18', '1976-10-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (828588, 'Nancy F. Harris', '1997-06-11', '1968-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (278829, 'Keith A. Mendoza', '1995-08-01', '1957-12-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (731827, 'Janet Hunt', '1992-06-20', '1963-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (344756, 'Timothy Porter', '2003-05-09', '1984-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (989907, 'Jeffrey L. Brooks', '1998-10-14', '1963-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177626, 'Ann C. Medina', '1995-01-24', '1974-11-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (289276, 'Kenneth L. Guzman', '1997-08-28', '1958-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (734201, 'Gary I. Medina', '2017-09-05', '1977-10-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877794, 'Frances Perez', '1998-08-19', '1981-10-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888208, 'Debra J. Allen', '2009-07-21', '1986-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (127993, 'Albert B. Gibson', '2016-07-08', '1976-01-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778766, 'Ralph W. Palmer', '1994-08-30', '1958-03-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837677, 'Albert F. Thompson', '1998-01-27', '1981-07-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (735151, 'Patricia W. Smith', '1991-05-05', '1950-08-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730570, 'Justin F. Russell', '2002-07-06', '1974-03-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (465687, 'Joseph I. Gonzales', '1993-02-16', '1975-10-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (174450, 'Jessica I. Boyd', '1990-03-12', '1950-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (106437, 'Ronald K. Morris', '1994-06-17', '1966-09-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781876, 'Ryan W. Schmidt', '2000-11-27', '1955-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (179272, 'Samuel O. Lopez', '1996-08-10', '1972-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878267, 'Nancy C. Munoz', '2016-10-28', '1985-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798579, 'Elizabeth O. Reyes', '1990-10-01', '1961-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (499470, 'Shirley Ramos', '1995-09-26', '1968-01-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (670750, 'Helen Turner', '1991-04-20', '1958-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (893736, 'Jason T. Edwards', '2000-09-10', '1966-08-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (320011, 'Timothy W. Davis', '2011-12-12', '1992-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (267735, 'Mary V. Brown', '2016-06-21', '1995-05-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (128898, 'Arthur Phillips', '1992-02-01', '1965-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837203, 'Larry T. Young', '2006-01-30', '1977-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (547456, 'Margaret T. Moreno', '1995-04-23', '1954-06-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (731657, 'Jason Crawford', '2002-06-27', '1958-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (735337, 'Frank E. Munoz', '1992-03-12', '1973-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728238, 'Brian X. Martin', '1995-05-23', '1964-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (098078, 'Rebecca J. Marshall', '2019-09-30', '1976-10-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757114, 'Joshua U. King', '2001-03-21', '1967-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (715252, 'Kathleen L. Owens', '2003-05-07', '1967-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (918446, 'Walter Stone', '1999-08-07', '1964-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (196576, 'Jose N. Porter', '1998-07-15', '1963-05-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (228577, 'Gerald P. Vargas', '1999-05-04', '1955-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837848, 'Betty U. Barnes', '1995-01-29', '1967-01-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773778, 'Harold Daniels', '1996-06-17', '1959-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728782, 'Harold R. Robinson', '1997-09-23', '1969-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (970191, 'Patrick W. Reed', '2018-04-03', '1983-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (020879, 'Richard C. Romero', '1995-03-13', '1952-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (570747, 'Jennifer Cooper', '2015-04-21', '1997-07-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (075610, 'Joe W. Thomas', '2000-02-08', '1968-07-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (209777, 'Peter F. Castro', '1995-07-28', '1970-01-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (190959, 'Brenda Edwards', '2010-05-05', '1982-07-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (892185, 'Stephen X. Hernandez', '2015-02-15', '1999-03-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (274807, 'Mark M. Morales', '1993-09-22', '1970-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777776, 'Mary H. Peterson', '1997-05-18', '1955-11-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (200407, 'Martha L. Herrera', '1994-06-06', '1951-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (348978, 'Jerry I. Cooper', '2004-06-02', '1976-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (381474, 'John Z. Johnson', '2008-08-18', '1989-05-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (958901, 'Jennifer N. Bell', '2006-12-02', '1973-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (927658, 'Willie W. Parker', '2015-04-13', '1992-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (649697, 'Peter Burns', '1994-08-29', '1969-10-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (480337, 'Juan G. Lee', '1996-02-20', '1975-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787776, 'Gerald L. Fox', '1994-09-07', '1974-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (809800, 'Rebecca X. Hamilton', '2006-09-22', '1979-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (687137, 'Ronald L. Daniels', '1994-04-12', '1976-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (198826, 'Gregory I. Garza', '1998-11-05', '1963-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (711314, 'Willie U. Griffin', '2010-05-24', '1969-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (957567, ' N. Freeman', '2015-11-16', '1999-07-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077796, 'Edward X. Bryant', '2013-08-12', '1986-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (768426, 'Larry G. Gibson', '2017-09-30', '1977-11-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (743884, 'Jason F. Torres', '2002-10-07', '1972-12-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (047500, 'Gary J. Wagner', '2004-05-01', '1988-06-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (045408, 'Karen V. Washington', '2013-09-04', '1992-09-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (108050, 'Helen L. Nichols', '2013-12-12', '1969-01-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857380, 'Charles B. Nichols', '1998-08-20', '1967-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (518787, 'Betty K. Murray', '1994-12-19', '1971-07-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778758, 'Stephanie L. Burns', '2010-12-05', '1986-09-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775296, 'Mark Miller', '1997-07-26', '1977-02-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (746483, 'Ruth S. Scott', '1999-04-27', '1969-06-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (012248, 'David E. Guzman', '1997-10-22', '1976-06-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (835962, 'Jeffrey Mcdonald', '1990-08-23', '1949-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (713388, 'Christine M. Torres', '2018-10-15', '1980-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797637, 'Joseph O. Gonzales', '2018-10-10', '1981-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772472, 'Arthur F. Long', '1994-01-22', '1960-10-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (725234, 'Brenda Morales', '1994-01-10', '1971-06-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (579477, 'Janet C. Henderson', '2014-04-04', '1990-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (889769, ' D. Thompson', '1997-06-06', '1958-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771735, 'Jeffrey Carter', '1992-07-21', '1967-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (167455, 'Stephanie L. Castro', '1996-01-17', '1963-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (657787, 'Willie L. Watson', '1996-03-06', '1977-10-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887879, 'Marie L. Olson', '2006-04-12', '1963-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (804200, 'Virginia E. Fisher', '1999-04-13', '1980-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (684352, 'Pamela Coleman', '1997-04-23', '1957-06-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (723781, 'Amy B. Washington', '2012-05-24', '1986-07-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (149711, 'Ryan Scott', '1992-05-15', '1963-09-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (821847, 'William Hunter', '2000-01-22', '1960-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (580527, 'Douglas T. Patel', '1995-10-14', '1962-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (487700, 'Donna G. Dixon', '1995-01-14', '1974-10-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (207058, 'Samuel L. Romero', '2005-01-03', '1962-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707508, 'Justin U. Ramirez', '2012-07-06', '1983-01-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (395890, 'Raymond L. Thompson', '2000-10-29', '1969-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (853714, 'Christine H. Chavez', '1994-12-10', '1955-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887853, 'Stephanie Q. Lopez', '2015-06-26', '1987-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870647, 'Patricia D. Mills', '2003-01-14', '1976-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (623777, 'Arthur N. Kelly', '1990-01-14', '1948-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787418, 'Mary G. Gomez', '1993-10-08', '1963-11-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (078713, 'Thomas Q. Guzman', '2010-03-18', '1967-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727210, 'Joe L. Coleman', '2008-02-06', '1971-02-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (744057, 'Frank Nguyen', '2001-11-01', '1984-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (393214, 'Margaret L. Green', '2001-11-01', '1973-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (769451, 'Eric V. Gibson', '1995-11-27', '1962-06-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (756720, 'Frances Wood', '2003-03-20', '1981-05-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177607, 'Robert P. Rogers', '1998-10-23', '1958-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (792404, 'Karen W. Wallace', '1996-10-10', '1956-04-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772587, 'Lisa Z. Hunter', '1991-12-05', '1973-11-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (528754, 'Virginia V. Ford', '2004-02-20', '1965-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (241144, 'Dorothy T. Castillo', '2012-03-28', '1973-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (417327, 'Jennifer Harris', '2010-11-22', '1978-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (724540, 'Pamela Z. Romero', '1996-07-27', '1977-09-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (444778, 'Margaret Mason', '1995-11-28', '1978-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (378979, 'Frances T. Cole', '2012-08-17', '1974-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875523, 'Carolyn L. Gibson', '2007-01-21', '1980-11-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (605988, 'Charles C. Dixon', '2010-09-15', '1992-09-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (382227, 'Gary Kennedy', '2007-01-15', '1991-01-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779867, 'Elizabeth N. Young', '1993-11-06', '1972-09-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (882124, 'Joseph Q. Vargas', '1990-07-31', '1967-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (483368, 'Nancy K. Kennedy', '1995-12-05', '1968-12-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (988821, 'Samuel Walker', '2016-03-16', '1982-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857626, 'Joshua T. Thomas', '2012-02-06', '1981-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878788, 'Angela Q. Soto', '1999-07-20', '1962-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (581929, 'Nancy P. Edwards', '1992-09-01', '1950-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887792, 'Marie D. Vasquez', '2016-10-04', '1988-09-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (359587, 'William L. Johnson', '1993-04-13', '1971-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (838484, 'Stephen O. King', '2017-01-01', '1995-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477278, 'Patrick F. Simpson', '2013-09-28', '1996-05-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (700320, 'Patrick White', '1998-12-10', '1962-01-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477775, 'Jack Clark', '1995-11-01', '1962-11-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737783, 'Frank E. Butler', '2002-04-11', '1959-03-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (657794, 'Jonathan V. Bailey', '2012-09-18', '1968-10-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (070684, 'Elizabeth Edwards', '2002-09-28', '1984-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (097787, 'Ruth W. Collins', '1992-07-14', '1973-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578090, 'Catherine X. Stewart', '1993-02-11', '1977-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757784, 'Robert A. Phillips', '2015-09-13', '1975-05-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (741488, 'Anna C. Simmons', '1993-05-20', '1964-10-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (748191, 'Karen Smith', '2013-05-09', '1996-07-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (069542, 'Betty G. Chavez', '2016-04-16', '1973-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (892374, 'Sarah E. Owens', '1998-08-10', '1967-02-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (526002, 'Carol F. Morgan', '2000-02-21', '1975-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (808052, 'Ronald V. Adams', '1996-08-05', '1953-09-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (371264, 'Steven I. Campbell', '2009-08-13', '1969-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (736664, 'Joseph Kelly', '1991-04-13', '1965-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (979477, 'Janet Z. Ford', '1993-12-13', '1958-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782088, 'Linda Jenkins', '1997-12-25', '1957-12-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (902787, 'Eric Q. Cruz', '1995-06-08', '1967-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (927878, 'Patricia Davis', '1993-08-22', '1962-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857657, 'Sandra Soto', '1993-11-30', '1968-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (558671, 'Albert W. Hayes', '1998-09-29', '1980-04-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (898118, 'Stephanie X. Castillo', '2017-12-13', '2000-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (297317, 'Lawrence Nelson', '1998-10-28', '1954-11-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (329527, 'Scott Green', '2007-05-12', '1982-12-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (720995, 'Margaret Guzman', '1991-11-02', '1964-06-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774483, 'Dennis U. Olson', '1996-12-14', '1960-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (028787, 'Jennifer Lee', '2015-06-22', '1973-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707570, 'Daniel V. Castro', '1999-06-07', '1981-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771275, 'Harold V. Guzman', '2001-05-21', '1973-09-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (183787, 'Joshua K. Rice', '2001-02-21', '1971-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (799920, 'Melissa T. Mitchell', '1993-05-17', '1954-12-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (541642, 'Brian X. Rivera', '1991-01-16', '1950-02-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (315527, 'Robert C. Martinez', '1996-08-25', '1978-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (072671, 'Raymond L. Morales', '1992-02-20', '1975-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (032057, 'Steven C. Chen', '1999-03-04', '1967-06-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (795976, 'Kimberly M. Reyes', '1992-04-22', '1966-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (817357, 'Lisa V. Lewis', '1994-02-24', '1961-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (570928, 'Albert Parker', '1999-11-23', '1964-12-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577745, 'Gary Z. Meyer', '2011-11-03', '1976-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887708, 'Christopher Q. Baker', '1997-03-15', '1969-06-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (860840, 'Richard C. Nichols', '2017-04-24', '1992-07-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (265877, 'George D. West', '1991-02-21', '1965-04-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780771, 'Michael J. Romero', '2014-10-28', '1970-07-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (582849, 'Andrew Morgan', '2014-12-28', '1979-11-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798778, 'Roger A. Johnson', '2015-03-21', '1991-04-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (387811, 'Arthur Cooper', '1991-08-27', '1974-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077682, 'Laura U. Taylor', '1991-04-26', '1952-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878234, 'Cynthia Q. Castillo', '2010-07-29', '1990-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788233, 'Helen Morales', '1997-07-13', '1974-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (758833, 'Helen F. Patterson', '1995-09-04', '1962-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (273460, 'Roger Harris', '2006-09-19', '1971-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (824043, 'Mary O. Reynolds', '1997-10-20', '1971-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777877, 'Jack G. Alexander', '2016-08-07', '1972-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (883865, 'Nancy R. Tucker', '1995-09-19', '1969-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (621978, 'Margaret Q. Crawford', '1993-10-17', '1965-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (818777, 'Shirley M. Sullivan', '1998-11-07', '1971-11-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (833176, 'Marie M. Dixon', '1996-03-06', '1967-02-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (639764, 'George G. Nguyen', '2008-04-29', '1968-10-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (049743, 'Joshua Kim', '1995-08-16', '1971-09-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (853381, 'Jessica M. Martin', '2011-05-15', '1971-12-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (206877, ' F. Martin', '2012-01-01', '1974-11-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577618, 'James U. Mcdonald', '1996-09-08', '1965-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777497, 'Gerald Washington', '1998-11-28', '1966-12-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (332783, 'Janet Thomas', '1993-04-28', '1956-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (271487, 'Mary Marshall', '1997-05-28', '1976-01-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (519789, 'Gary Williams', '2016-01-06', '1990-05-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (516277, 'Juan J. Scott', '1996-07-23', '1955-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778490, 'Betty H. Mcdonald', '2014-09-11', '1991-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (183197, 'Rebecca Mendez', '2000-07-14', '1957-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747309, 'Paul K. Ross', '2003-02-07', '1986-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (867753, 'Joshua A. Fernandez', '2014-09-07', '1971-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (012573, 'Raymond T. Kim', '1993-04-29', '1954-04-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (075871, 'Jeffrey H. Rivera', '1996-12-11', '1975-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (680882, 'Patricia H. Allen', '2011-04-12', '1979-02-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (041747, 'Douglas Edwards', '1995-10-18', '1962-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (408887, 'Jack Martin', '1990-12-23', '1962-07-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (790098, 'Pamela N. Phillips', '1992-12-24', '1976-02-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (867870, 'Robert J. Coleman', '1995-02-19', '1976-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (756083, 'Michael Rogers', '2016-11-18', '1978-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776703, 'Gregory C. Gonzalez', '2012-06-25', '1970-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (595856, 'Pamela Torres', '2010-05-08', '1982-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (975883, 'Margaret O. Foster', '2015-03-29', '1988-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (987782, 'Gerald M. Kim', '1990-01-10', '1963-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277882, 'Pamela Vasquez', '2012-01-25', '1968-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (826011, 'Helen O. Lopez', '1995-08-21', '1950-10-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708877, 'Amy N. Nguyen', '1995-01-13', '1961-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886857, 'Amanda N. Munoz', '2008-11-01', '1966-03-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (662722, 'Eric Q. Watson', '1997-06-02', '1967-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771380, 'Helen Flores', '2004-01-06', '1984-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775473, 'Jennifer R. Gray', '1997-06-01', '1961-03-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (648837, 'Helen R. Diaz', '2000-06-22', '1977-04-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (626598, 'Peter Ryan', '1999-08-02', '1957-02-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (422734, 'Donna R. Black', '2006-06-11', '1988-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (977712, 'Melissa O. Owens', '2008-06-19', '1988-11-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (332886, 'Sandra V. Richardson', '1997-03-03', '1972-01-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (634377, 'Jerry Boyd', '1993-06-28', '1968-10-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (683252, 'Albert U. Patel', '2002-01-23', '1964-08-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (983248, 'Samuel U. Kelly', '2005-07-15', '1986-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (653199, 'Brenda G. Silva', '1990-10-15', '1965-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887722, 'Kimberly L. Bryant', '2006-02-11', '1985-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (759348, 'Willie M. Tran', '2016-03-03', '1982-08-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (135607, 'Betty O. Price', '1997-06-05', '1978-03-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (620574, 'Betty W. Jimenez', '2010-03-05', '1966-03-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170860, 'Ruth U. Roberts', '1991-07-08', '1950-05-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737814, ' Cox', '2013-10-21', '1971-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779196, 'Sarah Rivera', '1991-03-12', '1953-01-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087187, 'Daniel J. Stone', '2001-06-26', '1980-03-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (481088, 'Sarah O. Mills', '1991-11-22', '1963-07-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (397832, 'Gerald Davis', '2019-05-31', '1981-02-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (173509, 'Carl U. Hill', '1995-12-26', '1964-02-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (881090, 'Gregory H. Owens', '1991-05-16', '1947-07-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (392748, 'Deborah Jackson', '2017-12-16', '1992-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (388948, 'Peter U. Fox', '2010-07-07', '1992-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886972, 'Gary R. Henderson', '1992-12-03', '1956-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (300695, 'Roger Wagner', '1996-08-16', '1980-07-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (510277, 'Michelle A. Carter', '2017-06-29', '1984-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (768876, 'Patricia W. Marshall', '2005-09-18', '1964-05-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (573761, 'Nicholas Rivera', '2002-06-24', '1974-08-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772707, 'Martha V. Ward', '1997-03-17', '1966-04-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677339, 'Patricia V. Holmes', '1994-04-30', '1960-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (285715, 'Anthony Z. Anderson', '2001-08-18', '1965-07-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (574577, 'Donna O. Ramirez', '2015-03-11', '1985-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (117812, 'Donna U. Castro', '1998-10-17', '1979-09-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (868587, 'Harold Watson', '2010-07-17', '1979-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (292717, 'Larry H. Wells', '1998-07-09', '1961-12-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (155996, 'Susan A. Patterson', '1998-09-25', '1967-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (767775, 'George S. Castro', '2001-09-07', '1962-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888737, 'Christopher Wright', '2012-02-29', '1980-04-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (750580, 'Amy O. Burns', '2018-01-01', '2001-01-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (134428, 'Mary Robinson', '1995-08-01', '1956-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780749, 'Cynthia Powell', '1997-12-17', '1975-05-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (281975, 'Ronald O. Butler', '1994-12-29', '1969-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (801337, 'Timothy X. Martin', '1999-08-01', '1957-11-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (847764, 'Rebecca S. Woods', '2014-04-19', '1975-06-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707710, 'Roger B. Alvarez', '1990-05-20', '1962-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877863, 'Virginia Hughes', '1992-02-10', '1955-03-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775878, 'Raymond J. Stone', '2000-05-22', '1972-08-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (024763, 'Amanda Robertson', '2006-02-13', '1963-04-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887625, 'Joe Williams', '2011-12-22', '1995-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (761343, 'Donna Foster', '2008-11-07', '1989-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (959132, 'Richard X. Murphy', '1998-03-11', '1960-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477376, 'Scott K. Webb', '2005-06-28', '1988-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773157, 'Sandra L. ', '1990-05-27', '1974-07-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (531574, 'Walter J. Bell', '1992-07-02', '1962-07-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (298781, 'Kathleen Myers', '1995-11-02', '1975-07-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (722079, 'Kathleen E. Garcia', '1998-01-27', '1971-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (412903, 'Patricia U. ', '1991-02-24', '1966-05-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (856671, 'Margaret F. Chen', '1997-11-17', '1964-01-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077678, 'Jonathan P. Harris', '2015-04-23', '1985-06-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (188667, 'Jonathan T. Hernandez', '2001-02-08', '1973-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (108457, 'Linda Z. Griffin', '2010-03-07', '1977-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (977870, 'Jack E. Morales', '1993-02-27', '1958-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (676879, 'Melissa N. Ellis', '1998-07-04', '1972-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (360961, 'Christopher L. Vargas', '1991-10-01', '1952-11-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728738, 'Sarah Butler', '1997-09-01', '1969-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (079841, 'Laura E. Foster', '2014-10-19', '1986-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774830, 'Joshua Z. Lee', '1991-05-22', '1956-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (895729, 'Amanda D. Olson', '1997-05-09', '1957-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (830686, 'Christine L. Gonzales', '2005-09-06', '1972-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (082202, 'Ralph D. Mcdonald', '1999-05-11', '1969-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077180, 'Lawrence I. Romero', '1992-10-03', '1970-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (207741, 'Roger Z. Cox', '2010-08-16', '1992-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775172, 'Gary M. Castro', '2018-11-11', '1980-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827785, 'Dennis U. Alexander', '1994-01-17', '1953-08-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773073, 'Kimberly Bennett', '1997-05-27', '1972-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (671772, 'Jason James', '1991-09-25', '1960-11-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (249227, 'Rebecca Long', '2001-10-14', '1970-02-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (198981, 'Paul Nichols', '1998-01-16', '1957-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (806664, 'Raymond Foster', '2018-07-11', '1994-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708707, 'Jonathan Kim', '2000-05-23', '1961-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178872, 'Douglas Z. Davis', '1999-07-18', '1963-10-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (232761, 'Cynthia Henderson', '1999-10-15', '1960-12-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775411, 'Anna U. Flores', '2013-10-21', '1976-07-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (602300, ' Q. Rodriguez', '2013-08-13', '1980-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (616054, 'Paul W. Wright', '1991-11-13', '1962-01-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (056629, 'Jennifer S. Gordon', '2017-03-26', '1990-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (507927, 'Mary Richardson', '1996-08-20', '1979-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (032671, 'Brian G. Jenkins', '1990-08-12', '1956-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (784085, 'Pamela E. Moreno', '1991-04-16', '1950-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (279528, 'Raymond R. Ford', '2015-11-18', '1997-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (802941, 'Amanda S. Olson', '1991-07-02', '1955-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (308777, 'Dennis L. Lee', '1993-04-02', '1968-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (513851, 'Margaret C. Brooks', '1990-12-11', '1953-09-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (570883, 'Pamela Jones', '1997-10-03', '1965-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (271833, 'William Taylor', '2018-07-01', '1990-05-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (332855, 'Scott Carter', '1991-07-27', '1964-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857370, 'Jennifer W. Robertson', '1991-11-23', '1958-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677041, 'Willie Daniels', '1997-12-16', '1967-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (271081, 'Stephanie Jackson', '2008-10-04', '1981-12-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (704341, 'Thomas Q. Russell', '2017-01-12', '1999-04-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (928887, 'Mark H. Murray', '1992-06-29', '1954-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (648746, 'Joe G. Hill', '2010-11-07', '1978-12-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (138741, 'Sandra C. Fernandez', '1990-04-17', '1973-08-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678727, 'Edward Webb', '1998-10-06', '1961-02-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (078245, 'Elizabeth Sanchez', '2015-08-18', '1986-09-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787835, 'Betty Silva', '1994-10-20', '1951-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788881, 'Gary Clark', '1999-05-23', '1964-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (828506, 'Timothy L. Flores', '1996-10-11', '1955-11-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (187712, 'Jonathan O. Collins', '2013-02-15', '1978-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (473844, 'Jessica N. Allen', '2019-02-25', '1980-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (954911, 'Amy W. Guzman', '2007-11-03', '1976-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718536, 'Daniel N. Guzman', '1995-08-25', '1969-09-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (187817, 'Janet C. Rogers', '2010-06-12', '1983-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (168718, 'Christopher J. Guzman', '2010-07-31', '1983-02-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (917770, 'Arthur M. Henry', '1998-03-15', '1962-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (398712, 'Cynthia R. Mitchell', '1990-04-04', '1955-06-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (461386, 'Dorothy Mcdonald', '2000-11-30', '1958-01-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (179087, 'Helen U. Palmer', '2014-08-04', '1995-03-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780767, 'Justin O. Warren', '2001-09-13', '1974-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775552, 'Sharon Ruiz', '1993-08-28', '1949-07-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (705978, 'Pamela N. Hicks', '1996-07-08', '1961-07-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (769396, 'Betty K. Morales', '1990-02-20', '1973-12-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477437, 'Arthur W. Hunter', '1992-02-16', '1966-01-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (619885, 'Amanda X. Sanchez', '2016-08-07', '1990-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777884, 'Jennifer H. Hill', '2010-06-03', '1987-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (845686, 'Samuel H. Murphy', '2015-12-05', '1999-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (851427, 'Justin Hayes', '1994-03-03', '1970-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718383, 'Anthony X. Ramirez', '2017-08-31', '1983-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (260173, 'Margaret V. Carter', '2006-03-20', '1986-07-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (865853, 'Barbara W. Barnes', '1998-04-15', '1979-08-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (761777, 'Eric X. Lewis', '2004-02-17', '1982-05-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727544, 'Harold Warren', '2019-09-21', '1991-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (207817, 'Ann K. Harris', '1993-04-14', '1963-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (881049, 'Scott U. Mendoza', '2016-02-14', '1978-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (388787, 'Amanda U. Scott', '1996-03-02', '1968-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (945788, 'Douglas E. Reynolds', '1990-10-18', '1955-02-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (584777, 'David King', '2017-06-05', '1983-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (388824, 'Brian Z. Cole', '2014-06-16', '1978-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (267348, 'John N. Sanchez', '1990-02-10', '1962-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718987, 'Deborah Q. Gutierrez', '2011-11-05', '1976-09-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887808, 'Dorothy Gray', '2015-12-23', '1992-07-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (909475, 'Virginia L. Robinson', '1991-11-29', '1961-10-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (820061, 'Roger N. Ramirez', '1997-01-02', '1965-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (627379, 'Amanda Butler', '2002-02-21', '1979-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (687148, 'Amy K. Jackson', '1999-07-11', '1983-02-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787755, 'Keith Z. Freeman', '2012-12-24', '1979-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (353622, 'James M. Daniels', '1998-11-08', '1957-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (449829, 'Willie U. Sanders', '1998-02-19', '1960-07-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688388, 'Shirley H. Lewis', '2003-03-10', '1975-02-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (058315, 'Albert W. Bryant', '1997-06-03', '1962-09-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782790, 'Catherine Watson', '2000-08-18', '1970-08-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797767, 'Jason N. Jenkins', '2012-09-27', '1972-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875879, 'Kathleen J. Chavez', '1999-02-04', '1983-04-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (968059, 'Christine M. Rose', '2012-03-19', '1991-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (575153, 'Kathleen Phillips', '1993-11-01', '1960-06-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (969345, 'Catherine M. Cole', '2016-11-03', '1978-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (034876, 'Paul Q. Howard', '2003-11-25', '1965-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (555679, 'Nancy U. Powell', '2014-09-26', '1978-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (792715, 'Mary C. Silva', '1995-01-20', '1957-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (076478, 'Debra A. Rivera', '2013-11-30', '1989-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (739576, 'Brian Brooks', '1994-04-13', '1958-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (083232, 'Jose Parker', '1990-07-24', '1972-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781560, 'Matthew Garza', '2000-08-19', '1977-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (569677, 'Cynthia C. Turner', '1994-09-22', '1975-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (697408, 'Scott H. Taylor', '2007-05-25', '1971-09-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778078, 'Donald F. Clark', '2004-05-03', '1970-06-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779947, 'Mark U. Murray', '2014-04-28', '1994-09-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (047578, 'Sarah N. Black', '2009-10-26', '1969-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (071580, 'Kimberly K. Black', '1998-08-19', '1972-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888077, 'Angela V. Taylor', '2019-05-29', '2000-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (818779, 'Stephanie U. Lee', '2000-03-22', '1975-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (555786, 'Debra Green', '2004-01-28', '1960-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (287770, 'Elizabeth H. Ward', '2008-11-27', '1992-01-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (835472, 'Ralph P. Roberts', '1992-02-29', '1970-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (172093, 'Kenneth T. Thomas', '1993-01-30', '1969-03-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (653812, 'Gregory I. Gutierrez', '1998-11-12', '1956-02-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (972712, 'Carl E. Parker', '1995-06-27', '1975-08-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (545181, 'Joseph Stewart', '2014-05-22', '1974-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (978227, 'Edward B. Hughes', '2000-01-08', '1972-08-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (783774, 'Gary K. Flores', '1991-09-21', '1950-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (648087, 'Joe Meyer', '2018-09-10', '1992-10-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (599778, 'Douglas Ellis', '2012-06-07', '1979-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870099, 'George J. Diaz', '1991-01-17', '1971-11-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (937661, 'Gerald Mason', '1999-05-08', '1960-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (914789, 'Sandra V. Gonzales', '2009-06-02', '1970-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (847877, 'Jessica W. Wallace', '1991-09-17', '1970-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730227, 'Mark K. Castro', '2003-07-08', '1977-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (808175, 'Richard Castillo', '2013-12-10', '1987-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (641973, 'Ralph Stephens', '2017-05-12', '1990-07-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (197403, 'Scott E. Porter', '1998-12-12', '1960-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782727, 'Rebecca Medina', '1998-04-09', '1982-02-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (946767, 'Maria L. Olson', '2016-09-15', '1975-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (437533, 'Donna F. Gutierrez', '1994-04-24', '1958-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (968015, 'Joseph Butler', '2013-06-05', '1990-09-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (720157, 'Roger V. Ruiz', '2019-12-29', '1995-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (017037, 'Christine P. Boyd', '1993-03-22', '1958-08-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (540111, 'Paul P. Wilson', '1992-05-22', '1967-10-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (673408, 'Carol O. Clark', '2008-05-03', '1976-12-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (481516, 'Douglas U. Thompson', '1993-06-25', '1961-01-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (542030, 'Catherine J. Mason', '1991-12-16', '1967-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (083577, 'Lisa J. Smith', '2005-04-04', '1968-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779110, 'Maria W. Black', '2018-07-13', '1981-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (542725, 'Shirley N. Morris', '1992-02-19', '1951-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (397598, 'Jason S. Bryant', '2007-10-30', '1974-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077925, 'Christine M. Ramos', '1999-09-26', '1958-11-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779182, 'Kevin Barnes', '1991-02-06', '1962-04-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (871273, 'Carolyn G. Gordon', '1993-10-08', '1972-07-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776934, 'Stephanie N. Marshall', '1999-11-05', '1966-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (452887, 'Patricia C. Diaz', '2009-01-29', '1977-06-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (844967, 'Deborah Nelson', '1999-01-31', '1970-04-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (357268, 'Roger I. Brown', '1998-01-25', '1976-01-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577793, 'Sandra F. Taylor', '1998-10-09', '1978-10-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (459772, 'Kenneth J. Evans', '2000-01-22', '1976-06-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (381016, 'William Kennedy', '1997-06-29', '1962-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (764978, 'Cynthia Q. Jenkins', '2013-08-02', '1992-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (704177, 'Martha I. Hamilton', '1992-10-18', '1968-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (648569, 'Charles R. Cruz', '1997-10-07', '1972-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (753205, 'Lisa E. Cole', '1998-05-03', '1960-12-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857783, 'Keith L. Simpson', '2006-07-22', '1976-11-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178958, 'Steven B. Bell', '2018-04-17', '1977-11-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (368418, 'Willie T. Martinez', '1992-10-03', '1948-06-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (795513, 'Ralph S. Long', '1993-01-21', '1956-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (297407, 'Peter Gibson', '2018-05-24', '1983-05-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (967957, 'Harold Webb', '2012-05-16', '1971-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (482547, 'Willie Patel', '2001-10-06', '1979-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (247257, 'Keith R. Howard', '1994-12-26', '1964-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377677, 'Larry U. Salazar', '1998-10-01', '1964-01-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (794121, 'Juan A. Freeman', '2011-08-08', '1976-07-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (084871, 'Ryan T. Rogers', '2009-03-13', '1968-01-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (629668, 'Charles P. Butler', '2008-01-18', '1980-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (717657, 'Albert Fisher', '1994-07-02', '1951-03-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872468, 'Lawrence Reed', '1999-10-12', '1967-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (865477, 'Ronald U. Turner', '1996-11-10', '1972-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (825583, 'Nancy S. Edwards', '2001-12-21', '1970-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (750716, 'Martha Olson', '1994-11-25', '1958-02-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (828753, 'Virginia M. Morales', '2007-11-29', '1967-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (299752, 'Jose V. Gonzalez', '2013-06-21', '1985-06-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (054949, 'Sharon Miller', '1997-11-16', '1963-02-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (437617, 'Matthew U. Tucker', '2018-05-18', '2000-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (760504, 'Helen Stevens', '2019-06-21', '1997-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777756, 'Samuel J. Morgan', '2006-07-17', '1981-12-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688904, 'Lawrence V. Carter', '1999-03-29', '1967-01-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (581778, 'Marie B. Morgan', '2011-03-25', '1994-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (509790, 'Barbara Silva', '2008-05-21', '1964-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (482292, 'Lawrence J. Dixon', '1999-10-26', '1958-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (238376, 'Patricia C. Cole', '2008-08-26', '1982-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (497738, 'Brenda Perry', '1997-05-27', '1980-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (851517, 'Donald Parker', '1997-06-14', '1960-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (947780, 'Arthur M. Rodriguez', '2005-06-30', '1966-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (359797, 'John Q. Rogers', '1997-01-26', '1980-01-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (656397, 'Arthur Jimenez', '1999-01-15', '1982-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (195408, 'Patrick U. Snyder', '2007-08-15', '1988-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (830807, 'Amy Z. Cox', '1994-08-29', '1957-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (712681, 'Henry M. Campbell', '2007-11-06', '1982-09-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857773, 'William C. Vargas', '1994-10-27', '1954-04-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (088218, ' P. Hicks', '2016-10-29', '1988-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (168901, 'Margaret M. Watson', '1996-02-14', '1956-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (986444, 'Susan F. Mcdonald', '1990-08-07', '1972-07-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (214276, 'Dorothy M. Cruz', '2006-05-11', '1966-01-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (975483, 'Matthew M. Jenkins', '1993-09-18', '1959-12-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (340068, 'Walter Z. Lee', '1995-09-12', '1976-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (476677, 'Willie U. Baker', '1991-04-07', '1958-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (483779, 'Karen C. Ortiz', '1995-07-06', '1952-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875577, 'Ann W. Nguyen', '1994-12-24', '1976-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (807727, 'Karen Miller', '1997-04-06', '1956-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (422995, 'David M. Patel', '1999-09-01', '1970-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876764, 'Stephanie X. Fox', '1991-08-05', '1974-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (309971, 'George Howard', '1992-11-16', '1971-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (326871, 'Joseph Ruiz', '2018-04-26', '1977-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877177, 'Michelle K. Burns', '2008-05-20', '1990-10-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779912, 'Susan T. Thompson', '1998-10-03', '1962-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788946, 'Cynthia Fox', '1999-11-05', '1978-12-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (027704, 'George G. ', '2009-03-04', '1968-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (739808, 'Timothy O. Phillips', '1994-01-05', '1966-11-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870943, 'Ronald O. Herrera', '2011-03-13', '1983-02-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (339797, 'Daniel W. Rose', '1992-09-27', '1960-08-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (030379, 'Michael L. Rogers', '1996-04-07', '1977-02-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (103770, 'Amy F. Washington', '1998-01-10', '1975-12-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778481, 'Carol Hughes', '1992-05-07', '1957-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (871358, 'James C. Butler', '1991-07-11', '1961-09-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (670805, 'Pamela B. Gomez', '2000-08-18', '1970-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (812969, 'Mark J. Stevens', '1990-06-09', '1953-09-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (428567, 'Shirley R. Soto', '1990-04-28', '1956-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737171, 'Willie J. Henderson', '2002-03-11', '1983-12-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (978020, 'Mark Brown', '2001-02-06', '1966-08-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577789, 'Margaret F. Jackson', '2017-09-22', '1980-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (840387, 'David B. Lewis', '2002-02-28', '1961-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277977, 'Linda Reynolds', '1997-01-21', '1971-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (332578, 'Patrick Z. Gonzalez', '2014-09-05', '1980-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (280477, 'Robert Nelson', '2014-10-06', '1986-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (789046, 'Donna Warren', '1997-02-25', '1964-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (427927, 'Gerald Gutierrez', '2006-01-12', '1973-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (753748, 'Matthew Perez', '1991-11-25', '1962-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (767037, 'Patricia E. Woods', '2003-07-21', '1984-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787788, 'Ralph Z. Ryan', '1991-11-23', '1958-11-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377288, 'James O. Rose', '2013-06-17', '1991-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477457, 'Roger P. Morgan', '2001-03-13', '1968-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (057778, 'Sarah Diaz', '2011-12-08', '1988-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677578, ' P. Tran', '1997-03-05', '1962-07-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (917877, 'Sharon Jimenez', '1996-04-02', '1965-11-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (603753, 'Lawrence Perry', '1992-02-09', '1948-12-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (768767, 'Gary Jordan', '2016-06-07', '1975-10-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (673687, 'James X. Gonzales', '2015-08-29', '1972-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778980, 'Shirley J. Robinson', '1995-03-28', '1976-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (373837, 'Harold Moore', '1996-06-27', '1961-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (133525, 'Arthur K. Crawford', '1998-12-12', '1961-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (252119, 'Margaret O. Shaw', '2000-10-28', '1958-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (071868, 'Carolyn J. Patterson', '2008-12-15', '1977-12-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (394821, 'Mark U. Snyder', '1998-11-12', '1982-01-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (169495, 'Dorothy S. Nelson', '1993-09-13', '1958-06-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178757, 'Sarah Young', '1993-08-22', '1952-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (324330, 'Laura T. Bailey', '1999-01-30', '1978-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (847589, 'Helen Perez', '2019-09-19', '1977-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (744182, 'Melissa I. Russell', '2003-11-11', '1970-04-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (751920, 'Michelle U. Vargas', '2007-10-03', '1964-04-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (138710, 'Anthony K. Cook', '1991-01-24', '1973-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (873796, 'Juan Ferguson', '2012-10-27', '1982-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781547, 'Stephanie L. Cooper', '2003-07-18', '1984-09-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (597988, 'Terry Z. Reyes', '2014-07-10', '1984-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (945877, 'Rebecca Gonzales', '1998-01-01', '1959-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (457872, 'Michael R. Jenkins', '2003-05-14', '1972-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (785792, 'Ralph Q. Olson', '1999-02-02', '1965-09-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875724, 'Scott R. Russell', '1995-11-06', '1968-04-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (762230, 'Arthur V. Allen', '2002-01-03', '1973-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (875078, 'Sandra I. Olson', '2000-01-13', '1967-02-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (719568, 'Shirley I. Porter', '2005-05-16', '1988-05-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (364666, 'Stephanie I. Alvarez', '2001-05-27', '1974-11-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (362167, 'Eric G. Sanders', '2010-02-06', '1986-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (863757, 'Arthur C. Moore', '2006-08-08', '1990-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (099136, 'Douglas G. Wood', '1991-06-03', '1971-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (680786, 'Linda Ross', '1999-06-23', '1958-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (719745, 'Matthew D. Roberts', '1993-08-24', '1972-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (586382, 'Scott Webb', '1990-04-26', '1946-01-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (567763, 'Justin Hicks', '1996-07-25', '1960-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (508815, 'Martha Q. Turner', '2013-09-16', '1996-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (785887, 'Barbara C. Garcia', '2003-01-25', '1969-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776617, 'Arthur Garcia', '2012-03-30', '1991-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (274792, 'George Foster', '2018-02-22', '1975-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (796184, 'Ruth U. Watson', '1990-09-08', '1958-10-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (807583, 'Willie F. Thompson', '2004-11-16', '1963-05-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757607, 'Jose O. Chen', '1994-11-03', '1958-01-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772385, 'Dorothy Morgan', '1998-05-09', '1980-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776880, 'Jessica X. Long', '2011-08-23', '1980-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (547418, 'Marie B. Gonzales', '1994-07-11', '1961-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (988704, 'Jonathan Simmons', '1992-09-24', '1970-01-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (447036, 'Kenneth Davis', '1990-09-27', '1946-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (658678, 'Samuel Q. Ortiz', '2006-03-11', '1973-10-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (271778, 'Edward U. Wright', '2003-12-26', '1986-01-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (165187, 'Martha M. Jordan', '1999-03-28', '1954-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (069186, 'Thomas Freeman', '1991-01-14', '1947-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (192578, 'George E. Gonzalez', '2008-12-29', '1980-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (292260, 'Nancy J. Reyes', '2018-08-10', '1997-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (860971, 'Gerald W. Jenkins', '2002-11-23', '1967-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877387, 'Ruth A. Martin', '2010-01-23', '1976-10-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778880, 'Lisa U. Harris', '2016-09-04', '1978-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (717978, 'Edward K. Baker', '1998-05-07', '1965-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728762, 'Mark Reyes', '1998-02-28', '1955-03-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (766765, 'Ann E. Bell', '1997-11-01', '1975-02-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678902, 'Linda R. Sanchez', '2014-06-19', '1983-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757576, 'Angela U. Morris', '2016-08-22', '1986-10-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (010787, 'Sarah K. Kennedy', '2005-09-21', '1984-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827772, 'Patricia O. Evans', '1998-08-28', '1974-03-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477785, 'David H. Mendoza', '1993-05-07', '1951-04-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (820343, 'Christopher Freeman', '2000-10-25', '1968-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (278730, 'Betty Soto', '2007-12-13', '1982-03-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (871525, 'Thomas Z. Anderson', '2010-11-02', '1968-07-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177184, 'Harold Mcdonald', '1998-09-11', '1966-03-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (738216, 'Raymond F. Nichols', '2012-07-23', '1989-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (744088, 'Sarah S. Turner', '1996-12-29', '1975-06-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (911827, 'Ronald D. Hicks', '2008-03-11', '1966-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778190, 'Nicholas X. Sanchez', '1991-04-28', '1957-02-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (763249, 'Terry R. Foster', '1993-01-26', '1956-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (831286, 'Jennifer Young', '1992-09-22', '1948-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827374, 'Ralph D. Baker', '2004-08-05', '1964-12-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (925884, 'Henry P. Cooper', '1998-11-09', '1969-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778864, 'Keith K. Daniels', '2003-09-28', '1986-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (977395, 'Maria Simpson', '1992-05-02', '1954-10-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277737, 'Rebecca S. Mitchell', '1992-05-10', '1963-05-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (137185, 'Walter U. Holmes', '1990-04-28', '1956-02-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (758859, 'Juan Q. Ortiz', '2002-10-08', '1965-03-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (251776, 'Amanda G. Aguilar', '1997-07-02', '1956-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (973755, 'Brian Thomas', '2009-03-06', '1973-03-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707474, 'Virginia A. Stewart', '2017-11-10', '1982-02-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (811952, 'Christopher Castro', '2016-12-29', '1976-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (541783, 'Gerald J. Powell', '2004-09-06', '1973-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (746107, 'Jessica V. Sanders', '1998-05-19', '1956-06-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (823891, 'Christopher A. Anderson', '2015-03-24', '1999-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (647072, 'Ryan M. Burns', '2012-02-19', '1977-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770415, 'Mark Ford', '1991-04-05', '1974-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (389286, 'Douglas P. Porter', '2015-07-16', '1978-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (047872, 'Arthur Patel', '2018-03-17', '2000-10-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (719707, 'Robert Q. Baker', '1994-10-03', '1971-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757759, 'Terry Williams', '1994-01-21', '1969-02-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (478977, 'Joseph Lee', '2008-08-12', '1971-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (701589, 'Ann B. Harrison', '2000-02-25', '1972-04-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (948879, 'Shirley X. Olson', '1991-10-17', '1963-02-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (880877, 'Ralph U. Simmons', '1991-02-25', '1972-03-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (859809, 'Raymond Mitchell', '2008-10-01', '1980-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (171817, 'Pamela N. Ortiz', '2004-04-08', '1977-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781561, 'Scott Q. Collins', '2015-12-21', '1986-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (352870, 'Nicholas L. Ortiz', '1998-03-23', '1965-04-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (345077, 'Carl Griffin', '1992-06-23', '1972-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (557487, 'Margaret D. Coleman', '2001-01-01', '1968-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (501896, 'Andrew G. Ramos', '2013-12-01', '1990-09-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (769727, 'Barbara E. Price', '1999-10-03', '1971-10-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (961223, 'Martha P. Moreno', '1991-10-15', '1947-12-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (807505, 'Deborah Ross', '1995-09-16', '1956-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (769738, 'Karen L. Mills', '1995-01-28', '1961-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787730, 'Matthew E. Fernandez', '2005-06-03', '1966-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (957777, 'Scott Silva', '2017-09-16', '1977-08-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (470587, 'Patricia S. Reyes', '2011-11-20', '1974-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (260967, 'Mary D. Ruiz', '1994-08-07', '1951-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (184576, 'Sandra V. Green', '2014-04-14', '1997-06-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (733932, 'Christopher P. Roberts', '1992-01-30', '1966-03-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (705185, 'Patricia J. Thompson', '1991-10-31', '1968-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (612197, 'Henry Q. Gutierrez', '1991-06-12', '1951-07-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (065784, 'Kimberly I. Harrison', '1996-10-06', '1967-05-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (824146, 'Willie Vasquez', '2011-02-06', '1989-03-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708482, 'Brenda L. Lopez', '1993-07-03', '1950-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (166781, 'Gregory U. Evans', '1992-08-20', '1961-10-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577918, 'Lisa K. Harris', '1998-06-30', '1962-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (803771, 'Eric Fisher', '2010-12-17', '1994-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (405068, 'Deborah T. Mcdonald', '1999-02-13', '1969-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (624953, 'Willie E. Martin', '2008-03-20', '1973-02-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (389287, 'Matthew Q. Stewart', '1995-04-16', '1976-09-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870138, 'Debra C. Nichols', '2012-03-03', '1974-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (976586, 'Barbara U. Owens', '1997-12-23', '1974-06-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (632850, 'Richard U. Palmer', '1998-09-26', '1957-02-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774088, 'Carolyn K. Soto', '1996-06-15', '1970-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (803433, 'Willie Q. Alexander', '2010-04-18', '1967-04-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077401, 'David Peterson', '2013-03-23', '1989-03-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (956124, 'Joe J. Brown', '2016-09-16', '1983-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (410458, 'Arthur L. Morris', '1995-09-26', '1954-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (889337, 'Linda J. Holmes', '2019-08-21', '2001-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678957, 'Keith V. Watson', '1999-10-11', '1968-05-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (007096, 'Andrew S. Morales', '2001-10-23', '1956-12-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888734, 'Mary Herrera', '1991-02-21', '1954-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (739634, 'Larry C. Daniels', '1994-07-13', '1959-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (508513, 'Betty P. Fisher', '1998-09-10', '1978-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (915857, 'Sharon Patterson', '2019-12-10', '1988-01-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (820138, 'Patrick X. Miller', '1991-07-03', '1952-09-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877858, 'Jack Sanders', '1990-01-16', '1973-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (185877, 'Nancy V. Ferguson', '1991-05-22', '1961-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (291973, 'Ralph Q. Turner', '2012-07-22', '1968-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (973397, 'Jonathan H. Green', '2018-11-13', '1979-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718764, 'Timothy L. Patel', '2016-03-26', '1983-11-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (716354, 'Roger K. Walker', '2016-02-17', '1975-03-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (267477, 'Angela Mendoza', '2019-09-14', '1995-06-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (697387, 'Jennifer Clark', '1990-10-09', '1952-05-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757358, 'Arthur B. Powell', '2000-02-15', '1971-08-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (883954, 'Stephen I. Mendez', '2007-07-14', '1976-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (829507, 'Maria Q. Scott', '2011-03-07', '1974-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777809, 'Frank H. Phillips', '2019-10-19', '1984-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737963, 'Anna A. Mills', '2001-09-15', '1957-05-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (584406, 'Gerald N. Lee', '1997-06-02', '1952-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (092737, 'Frances D. Marshall', '1992-07-18', '1968-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (795685, 'Jose M. Mills', '1990-11-07', '1946-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777471, 'Martha Hill', '1993-12-09', '1967-02-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (388767, 'Nicholas U. Sullivan', '1997-06-19', '1959-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (738881, 'Marie Z. Rogers', '1990-02-19', '1948-04-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (335476, 'Virginia Wright', '1996-06-12', '1954-07-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (608716, 'Jessica O. Tran', '2011-10-07', '1970-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (675797, 'Jose Cox', '2001-05-28', '1957-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (292360, 'Karen Hunter', '1990-09-12', '1967-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (033037, 'Sandra E. Webb', '1990-03-25', '1951-07-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (088347, 'Jason O. Mcdonald', '1997-12-13', '1979-05-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727944, 'Ralph L. Gutierrez', '1998-04-01', '1964-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (032758, 'Dorothy Hunter', '2015-03-19', '1989-05-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (698472, 'Kathleen Dixon', '1990-03-01', '1947-02-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (856847, 'Maria Z. Meyer', '1991-09-07', '1973-10-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (785686, 'Jeffrey Dixon', '2007-08-07', '1978-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (766209, 'Nicholas O. Munoz', '1995-09-09', '1977-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677828, 'Roger Nelson', '1996-10-12', '1961-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (566777, 'Linda X. Soto', '1993-04-11', '1948-06-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788713, 'George Harris', '2016-06-18', '1972-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (442163, 'Kenneth W. Romero', '2010-11-30', '1987-12-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797730, 'Joseph L. ', '1991-02-12', '1967-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688861, 'Christopher Mills', '2004-06-04', '1963-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (680244, 'Janet Q. Wallace', '2009-01-25', '1984-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (703860, 'Joe D. Boyd', '2007-01-24', '1990-06-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (849988, 'Sharon V. Griffin', '1992-01-14', '1972-03-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (789208, 'Joshua H. Holmes', '1996-05-13', '1953-05-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (272774, 'Frances V. Bryant', '2010-02-22', '1978-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677647, 'Henry F. Hunt', '2011-03-14', '1970-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (456382, 'Patricia X. Mcdonald', '1990-09-12', '1957-03-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (864787, 'Jonathan Murphy', '1994-11-29', '1966-01-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (086670, 'Albert G. Black', '1999-04-17', '1968-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (040507, 'Ryan U. Hunter', '1993-08-30', '1968-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (717539, 'George G. Ferguson', '2006-04-14', '1962-06-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (347747, 'Deborah A. Wells', '1990-06-19', '1955-06-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (659886, 'David U. Hall', '2012-07-27', '1968-07-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (647768, 'Jason E. Mcdonald', '2003-02-18', '1973-12-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (828908, 'Ruth Morales', '2019-06-04', '1994-07-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (448447, 'Eric Sanchez', '2015-10-11', '1975-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (176004, 'Daniel K. Simmons', '2011-04-28', '1971-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (304177, 'Martha P. Nguyen', '2010-12-13', '1993-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (978108, 'Ralph C. Henry', '1997-04-08', '1955-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688968, 'Brenda J. Vasquez', '1999-07-01', '1968-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077021, 'Dorothy O. Garcia', '2004-03-12', '1980-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (656771, 'Lisa C. Sullivan', '1995-10-07', '1968-11-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (751837, 'Frances Turner', '1995-02-22', '1976-07-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (296079, 'Jessica T. Henry', '1992-09-24', '1957-12-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787627, 'Edward K. Salazar', '1990-10-30', '1953-12-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708737, 'Dorothy A. Smith', '1993-07-07', '1966-09-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587785, 'Brenda L. Fisher', '1990-10-11', '1964-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (742567, 'Jonathan L. Hayes', '2015-10-29', '1973-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (700807, 'Paul C. Hunt', '1997-06-22', '1971-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (968270, 'Marie Z. Hill', '1993-07-14', '1965-07-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177830, 'Margaret Z. Martin', '2010-09-29', '1993-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (013841, 'Amanda Lewis', '1990-11-19', '1963-11-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (490733, 'Anna Z. Olson', '2006-09-07', '1982-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (072039, 'Ann E. Torres', '1995-11-29', '1965-07-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (852249, 'Amanda Ward', '1993-01-22', '1953-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (722749, 'John J. Morris', '1999-11-07', '1964-01-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (816477, 'Maria W. Hunt', '1997-10-05', '1958-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678093, 'Peter S. Mendez', '1993-06-09', '1956-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886621, 'Christine F. Moore', '1999-09-26', '1963-03-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (873054, 'Carol ', '2011-04-22', '1993-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (672777, 'Jerry S. Stevens', '2015-04-03', '1987-04-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (194198, 'Jose Z. Chavez', '1999-11-30', '1973-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (507702, 'Brenda U. Meyer', '1993-06-17', '1972-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (879474, 'Mary Smith', '1994-11-08', '1975-12-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (257641, 'Frank W. Wagner', '2019-01-23', '1993-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (580338, 'Christopher O. Mendez', '2001-11-22', '1977-02-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737590, 'Ryan I. Salazar', '1999-06-27', '1968-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (840098, 'Peter Patel', '1996-07-25', '1969-09-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (725884, 'Jessica Q. Reed', '1992-05-18', '1967-01-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (723630, 'Richard Freeman', '2010-02-12', '1967-02-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (657810, 'Walter U. Gibson', '2012-06-12', '1967-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886787, 'Roger Q. Bell', '2012-03-09', '1980-12-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (297245, 'Deborah L. Soto', '2014-12-14', '1979-12-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877593, 'Raymond P. Richardson', '2017-03-08', '1974-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (139876, 'Rebecca U. Johnson', '2015-11-17', '1989-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797404, 'Kenneth Martin', '1999-06-17', '1963-10-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (171300, 'Matthew C. Salazar', '2005-08-23', '1982-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (085325, 'Raymond I. Lopez', '1991-08-23', '1960-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (508944, 'Raymond L. Burns', '1996-08-17', '1962-10-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876838, 'Frances R. Flores', '1995-03-11', '1960-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (467884, 'Jose O. Thompson', '1999-12-13', '1976-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (241671, 'Joshua U. Meyer', '2002-11-07', '1962-09-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (490060, 'Ronald X. Castro', '2015-09-14', '1992-12-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (768768, 'Robert W. Ellis', '1997-05-14', '1976-06-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (286318, 'Carolyn Hayes', '1991-07-31', '1952-01-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (765339, 'Arthur X. Kelly', '1996-11-14', '1970-07-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (224676, 'Janet F. Hunt', '2001-01-31', '1981-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077869, 'Ryan Simpson', '2010-10-06', '1980-12-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (257772, 'Mark Gonzalez', '2019-03-28', '1978-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087376, 'Cynthia H. Hayes', '1997-07-30', '1970-12-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782032, 'Scott Washington', '2004-05-26', '1986-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (402848, 'Jennifer L. Washington', '2006-08-17', '1986-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277875, 'Jose Cook', '1993-06-20', '1963-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771377, 'Jack Bennett', '1992-06-15', '1954-07-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (265679, 'Mark Bennett', '2010-06-04', '1973-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (200778, 'Janet Z. Fox', '2013-02-03', '1977-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (085049, 'Kimberly Mendoza', '1999-12-06', '1964-06-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (652777, 'Richard N. Moreno', '2008-03-11', '1971-12-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886918, 'Ralph U. Ramirez', '2003-01-25', '1971-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (487784, 'Catherine X. Palmer', '1991-05-27', '1958-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (247009, 'Keith P. Rose', '1996-12-04', '1974-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (488858, 'Ralph B. Stewart', '1993-09-16', '1952-09-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (433739, 'Carol Burns', '2015-12-18', '1971-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (852280, 'Donna Palmer', '1996-03-30', '1951-07-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837782, 'Andrew L. Medina', '2010-08-13', '1972-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (603718, 'Margaret S. Gray', '1997-12-16', '1960-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (881717, 'Albert Fox', '2005-06-29', '1961-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771582, 'Kevin R. Wood', '2017-01-07', '1977-06-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (868858, 'Lawrence Torres', '2000-05-28', '1979-08-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (487501, 'Peter Porter', '2018-12-10', '1979-12-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (431844, 'Christine O. Russell', '1993-02-27', '1952-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (764878, 'Christopher J. Kennedy', '2001-03-27', '1966-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (698152, 'Jason K. Owens', '1995-03-10', '1978-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (571786, ' R. Powell', '2012-06-24', '1967-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (677877, 'Ryan E. Wagner', '2002-05-24', '1976-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (769378, 'Kenneth C. Peterson', '1993-10-06', '1955-11-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837397, 'Ann L. Young', '1993-05-23', '1959-09-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (099487, 'Cynthia L. Hughes', '1991-12-03', '1975-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (011787, 'Willie V. Mason', '1990-05-09', '1966-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (799870, 'Barbara J. Roberts', '1992-04-09', '1957-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (037179, 'Donna Henderson', '1990-11-20', '1972-12-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (825195, 'Scott Moore', '1994-06-07', '1964-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (322087, 'Dorothy M. Foster', '2004-11-03', '1963-09-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (700681, 'Roger Harrison', '1991-09-30', '1960-07-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (752540, 'Ruth Dixon', '1996-06-30', '1974-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (705275, 'Mary Holmes', '1991-04-01', '1971-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (102259, 'Kenneth Jenkins', '2010-07-24', '1978-10-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (500798, 'Raymond L. Guzman', '1994-05-30', '1962-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (497317, 'Samuel R. Rivera', '2007-09-08', '1967-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798314, 'Kimberly R. Johnson', '2007-11-30', '1965-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177597, 'Maria U. Nguyen', '2011-09-21', '1967-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (100367, 'Samuel W. Kelly', '2001-03-08', '1983-06-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (387960, 'Shirley B. Snyder', '2012-12-01', '1983-12-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857281, 'Melissa Peterson', '1998-10-28', '1968-09-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (733075, 'Frances D. Brooks', '2001-01-09', '1965-03-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (950348, 'Stephen L. Hughes', '2008-04-01', '1991-03-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775868, 'Mary M. Campbell', '1996-01-15', '1960-02-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (127178, 'Patrick F. Schmidt', '1997-12-20', '1982-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (837826, 'Brian O. Black', '2017-03-09', '1990-12-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (654715, 'Jennifer P. Lopez', '2005-11-29', '1965-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (081582, 'Gregory Garcia', '2000-09-03', '1966-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (970180, 'Angela E. Alexander', '2005-02-01', '1984-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (862733, 'Christopher Wood', '1998-05-18', '1970-09-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771777, 'Frances Brown', '2003-05-19', '1962-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876007, 'Walter E. Guzman', '1990-04-05', '1954-03-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878757, 'Timothy N. Williams', '2007-04-11', '1981-06-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (135688, 'Paul F. White', '1994-09-25', '1951-02-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (900137, 'Raymond I. Alvarez', '2008-10-19', '1977-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (188487, 'Linda U. Hill', '1998-03-20', '1975-04-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (861880, 'Kimberly U. Wilson', '1994-10-03', '1960-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (529688, 'Juan J. Wagner', '2011-08-08', '1988-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (108270, 'Elizabeth G. Murray', '1997-03-29', '1954-09-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (839724, 'Linda C. Gibson', '1997-05-16', '1967-06-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707173, 'Amanda R. West', '2004-04-24', '1981-11-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (813784, 'Brian Q. Hernandez', '1993-03-18', '1951-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (854824, 'Patrick Walker', '1990-07-16', '1963-08-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (283785, 'Carl N. Walker', '2015-07-19', '1983-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (451370, 'Stephen F. Clark', '2009-06-15', '1980-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (488637, 'Frank Z. Cruz', '2009-06-26', '1982-07-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (375708, ' Snyder', '1997-07-21', '1974-04-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (201847, 'Willie U. Green', '1991-07-31', '1972-12-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887014, 'Lawrence S. Butler', '1995-05-08', '1958-05-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577726, 'Roger E. Woods', '2010-06-23', '1967-04-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (085182, 'Patrick D. Olson', '1999-03-26', '1972-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (519769, 'Mary H. Martin', '2002-01-25', '1983-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747186, 'Kathleen O. Hill', '2018-09-17', '1974-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775728, 'Joseph Barnes', '1993-02-18', '1951-02-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (759762, 'Gerald Anderson', '2007-07-02', '1982-03-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (547508, 'Juan W. Carter', '1992-08-26', '1959-08-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (538797, 'Laura V. Carter', '2009-12-01', '1965-12-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (784298, 'Sandra Z. Myers', '2000-08-05', '1967-10-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178246, 'Richard K. Woods', '1999-02-12', '1969-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (638857, 'Paul C. Freeman', '1999-09-02', '1977-10-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077377, 'Brian V. Cook', '2000-06-16', '1960-02-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (430674, 'Raymond R. Mendoza', '2007-02-05', '1987-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (187717, 'Jose Silva', '2018-12-17', '1986-02-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877927, 'Virginia O. Allen', '1999-10-09', '1977-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (710984, 'Deborah Cooper', '1995-09-14', '1962-04-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (854367, 'Anna O. Edwards', '1997-12-26', '1968-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (859369, 'Marie M. Fernandez', '2012-12-28', '1978-08-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (738985, 'Thomas C. Hughes', '1995-04-18', '1957-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578896, 'Kenneth C. Hill', '1991-04-10', '1962-10-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872277, 'William Lee', '1990-01-31', '1956-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (321718, 'Matthew J. Cook', '2018-05-19', '1986-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (957779, 'Walter P. Price', '1995-02-28', '1951-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737164, 'Susan R. Mason', '1996-06-21', '1964-02-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771070, 'Sarah W. Ruiz', '1994-04-01', '1959-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (882367, 'Susan Z. Patel', '2001-08-23', '1973-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (889743, 'Melissa Z. Carter', '2010-03-06', '1983-05-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (467107, 'Peter Kennedy', '1994-07-08', '1955-05-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (947899, 'Robert B. Campbell', '2012-04-28', '1975-10-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (929446, 'Margaret U. Jones', '1990-06-08', '1952-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (688698, 'Helen Jackson', '1994-02-07', '1965-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778157, 'Stephen Z. Griffin', '2019-03-31', '1975-04-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (660778, 'Melissa G. Wilson', '2014-05-26', '1983-10-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (483196, 'Michelle Silva', '1996-09-09', '1963-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (515779, 'Charles M. Turner', '2016-07-02', '1993-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (656772, 'Rebecca Nichols', '1996-04-22', '1951-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (903821, 'Patrick I. Evans', '2015-05-06', '1974-05-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887270, 'Ronald D. Kennedy', '2013-04-15', '1974-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (387860, 'Daniel U. Wilson', '2001-06-17', '1964-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778643, 'Nancy X. Rice', '2011-03-14', '1990-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (387021, 'Mark G. Wood', '2000-04-07', '1970-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578362, 'Kimberly Vasquez', '1991-07-26', '1949-08-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (194810, 'Andrew Ruiz', '2000-04-01', '1981-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (202179, 'Michelle O. Allen', '2018-06-29', '1994-06-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (796007, 'Jessica Salazar', '1993-07-12', '1950-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (123478, 'Arthur Nguyen', '2014-09-05', '1982-01-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (568297, 'Brenda Q. Hunt', '1995-05-06', '1971-11-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788471, 'Catherine Ortiz', '2003-05-07', '1970-03-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (309667, 'Jonathan Marshall', '2006-11-09', '1989-02-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (879788, 'Thomas D. Watson', '1991-03-16', '1970-02-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877887, 'Elizabeth A. Parker', '2013-08-22', '1989-12-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (921824, 'Larry O. Fernandez', '2010-08-05', '1983-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (337706, 'George Porter', '1999-10-03', '1966-03-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (848948, 'Michael F. Harrison', '2003-07-21', '1970-07-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (272714, 'Sandra W. Griffin', '1991-06-25', '1962-08-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777672, 'Christine P. Ross', '2013-05-22', '1993-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (489422, 'Steven M. Mitchell', '2004-04-06', '1970-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (213735, 'Elizabeth Parker', '1994-02-24', '1975-04-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730112, 'Gary O. Marshall', '1999-12-23', '1979-01-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (683254, 'Dennis Q. Green', '2014-12-06', '1996-02-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (848499, 'Marie Holmes', '1999-05-02', '1980-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (661573, 'Janet O. Reed', '1992-02-14', '1956-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (017684, 'Lawrence D. Ward', '1990-08-17', '1954-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (662097, 'Marie Campbell', '2009-04-11', '1972-04-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772913, 'Justin J. Owens', '2003-11-15', '1972-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (736913, 'Carl Herrera', '1993-03-22', '1973-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (380908, 'Melissa Q. Jackson', '2004-08-03', '1967-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (397955, 'Ralph O. Mitchell', '1998-03-01', '1978-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (467507, 'Andrew W. Hunter', '1999-01-03', '1982-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (697773, 'Melissa N. King', '2002-12-07', '1965-01-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (040377, 'Lisa X. Weaver', '1999-05-06', '1960-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (235670, 'James Woods', '2014-01-23', '1991-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (242937, 'Arthur Jordan', '2009-02-03', '1971-07-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779357, ' Mendoza', '2004-08-12', '1961-09-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778957, 'Melissa E. Myers', '2003-06-11', '1964-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (425725, 'Timothy R. Gray', '2017-08-22', '1993-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (557382, 'Sharon Reyes', '2006-12-20', '1976-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (067764, 'Deborah Boyd', '2018-05-22', '1979-12-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (838185, 'Michelle Kelly', '2018-10-23', '1996-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (673973, 'David I. Simpson', '2009-04-25', '1971-06-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (970823, 'John G. Harris', '1993-03-08', '1971-06-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (537508, 'Justin X. Russell', '2017-01-29', '1984-05-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778274, 'Richard R. Miller', '1997-02-05', '1966-11-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707578, 'Kenneth F. Reynolds', '1996-03-10', '1978-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (357577, 'Timothy M. Hunter', '1995-02-23', '1971-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (836486, 'Douglas U. Gibson', '2015-12-05', '1972-12-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (673840, 'Ralph L. West', '1990-03-30', '1966-08-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (705777, 'Andrew X. Woods', '2003-11-01', '1976-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788257, 'Nancy P. Lopez', '2007-08-14', '1978-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887187, 'Mark Mendoza', '1993-01-23', '1971-03-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (740877, 'Karen T. Fernandez', '2007-04-22', '1982-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877071, 'Donna Z. Moore', '1993-07-25', '1949-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (952437, 'Robert W. Mitchell', '2010-10-15', '1984-11-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (443786, 'Sandra Rodriguez', '2014-02-24', '1989-06-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (178947, 'Helen H. Henry', '2003-10-15', '1959-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (257787, 'Deborah Peterson', '2007-05-14', '1969-05-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (379879, 'Martha S. Bailey', '2000-06-08', '1967-06-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (225742, 'Justin Ford', '2014-06-17', '1974-12-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (724591, 'Larry Hernandez', '1996-03-04', '1957-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (288457, 'Kathleen I. Romero', '1994-03-04', '1955-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (840557, 'Willie L. Shaw', '2014-09-05', '1972-02-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (653957, 'Stephen G. Bell', '2008-04-19', '1979-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778337, 'Eric Robertson', '1992-12-23', '1969-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (176575, 'Nancy I. Martin', '2004-08-26', '1964-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (079771, 'Willie Simmons', '2019-09-19', '1979-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (381505, 'Mark B. Butler', '2018-01-10', '1991-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798331, 'Peter A. Snyder', '2011-10-08', '1989-07-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (249737, 'Stephen P. Mendez', '2001-10-14', '1958-01-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (288976, 'Rebecca A. Tucker', '2017-03-01', '1997-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (581770, 'Barbara I. Morales', '2013-03-17', '1986-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786777, 'Samuel Howard', '1990-06-05', '1955-12-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (139323, 'Jonathan Reynolds', '2012-04-20', '1977-07-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (874106, 'Donna D. Henderson', '2005-03-20', '1972-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878476, 'Carolyn Rivera', '2011-06-29', '1995-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (847578, 'Anna I. Bryant', '1996-08-04', '1978-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (997363, 'Pamela Turner', '2006-02-09', '1984-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (595287, 'Juan Green', '2000-08-03', '1983-03-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781193, 'Ryan Evans', '2004-08-04', '1967-01-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (367257, 'Jason I. Fisher', '2000-02-06', '1972-11-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (775497, 'Thomas M. Stewart', '1997-02-11', '1954-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (334278, 'Eric Z. Fernandez', '2007-03-13', '1976-11-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (789773, 'Keith H. Davis', '2006-01-22', '1980-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (782442, 'Shirley F. Moreno', '2011-01-16', '1987-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (983467, 'Henry Z. Rivera', '2000-12-21', '1969-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (590373, 'Carolyn L. Daniels', '2005-01-22', '1975-11-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377407, 'Pamela N. Chen', '2007-12-15', '1974-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (388491, 'Jack W. Hill', '2005-04-20', '1970-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (976976, 'Jonathan H. Jordan', '1997-02-17', '1964-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (321745, 'Sandra H. Rice', '2012-11-24', '1986-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (478288, 'Larry J. Green', '2007-06-17', '1976-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (973869, 'Edward X. Moreno', '2018-08-31', '1998-04-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777209, 'Kenneth O. Warren', '2006-01-29', '1975-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779740, 'Keith M. Tucker', '1996-09-11', '1973-06-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (183865, 'Andrew I. Tran', '1994-11-17', '1962-01-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878119, 'Betty Ryan', '2019-12-17', '1987-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (347175, 'Lawrence N. Wallace', '2008-04-23', '1985-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728887, 'William V. Thompson', '2010-02-21', '1967-09-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (146701, 'Andrew J. Holmes', '2008-05-11', '1983-06-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (851729, 'Stephen Schmidt', '2016-04-25', '1987-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777007, 'Matthew N. Ellis', '1993-01-11', '1955-02-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (881960, 'Angela Q. Russell', '2018-12-25', '1975-06-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (718025, 'Harold U. Martinez', '2002-07-16', '1970-09-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (452954, 'Nancy Vargas', '1990-08-03', '1951-11-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (586882, 'Patricia Simmons', '1992-09-14', '1955-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (186371, 'Frank W. Patel', '1990-01-29', '1968-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (480238, 'Sharon Jones', '1999-12-13', '1956-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (854928, 'Matthew J. Harrison', '1990-10-04', '1973-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (987068, 'Joshua Bailey', '1997-05-25', '1953-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (518485, 'Roger J. Stewart', '2014-08-18', '1972-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (607792, 'Patricia Vasquez', '1999-01-25', '1963-04-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (492588, 'Mark Kelly', '2018-06-30', '2001-08-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (204975, 'Helen Ruiz', '1999-11-25', '1963-07-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (205970, 'Rebecca D. Simmons', '1992-06-15', '1948-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087287, 'Nancy G. Perez', '2002-01-21', '1986-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (701520, 'Lawrence Shaw', '1997-09-14', '1979-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (793852, 'Walter Z. Simmons', '2005-02-12', '1973-12-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (374777, 'Christopher D. Owens', '1997-09-05', '1972-02-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (947248, 'James V. Hamilton', '1991-05-24', '1973-07-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (480799, 'Ann Rose', '2013-10-29', '1986-12-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (695930, 'Dennis G. Wallace', '2007-07-31', '1990-03-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (725694, 'Jason U. Diaz', '2004-01-03', '1967-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827077, 'Jessica U. Harrison', '1992-06-18', '1976-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (561141, 'James Jimenez', '1993-08-11', '1954-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (791736, 'Henry C. Daniels', '1994-01-23', '1957-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (070713, 'Juan D. James', '2011-03-13', '1966-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (868086, 'Betty Gomez', '2000-06-26', '1961-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077729, 'Terry J. Kim', '1993-05-15', '1956-10-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (337477, 'Thomas D. Jimenez', '1995-08-02', '1960-05-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (846550, 'Willie Z. Shaw', '1997-02-09', '1970-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (358368, 'Linda G. Meyer', '1998-12-21', '1959-08-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777347, 'Anna Burns', '2017-05-18', '1976-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (598087, 'Scott B. Robinson', '2010-10-31', '1972-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (743826, 'Anthony E. Jackson', '2015-04-03', '1982-09-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (822270, 'Nicholas T. Jones', '1998-04-25', '1979-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (821727, 'Donna D. Kim', '2001-11-06', '1971-05-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (596474, 'Edward S. Thompson', '1991-10-30', '1969-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (342254, 'David B. Kim', '2015-02-18', '1981-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (174484, 'Stephen K. Baker', '1993-06-18', '1966-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578785, 'Gary F. Johnson', '1992-12-16', '1963-03-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (035748, 'Catherine Weaver', '1992-02-11', '1953-10-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772938, 'Michael P. Romero', '2017-04-09', '1995-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (198321, 'Pamela L. Richardson', '1994-11-16', '1957-05-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678478, 'Frances F. Black', '1999-09-14', '1959-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872374, 'Pamela Castillo', '2016-10-01', '1973-10-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (423778, 'Lawrence U. Cooper', '1999-03-05', '1978-03-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (037163, 'Dennis Q. Powell', '2017-08-07', '1982-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (298531, 'Sandra K. Guzman', '1996-03-06', '1961-03-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (697762, ' C. Morris', '2002-11-17', '1974-11-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277645, 'Edward Fox', '2014-03-30', '1986-01-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (973827, 'Karen D. Freeman', '2009-07-25', '1982-12-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (739073, 'James O. Jackson', '1990-02-07', '1950-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (114773, 'Keith P. Smith', '1997-02-27', '1971-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797885, 'Lisa I. Reed', '1993-08-20', '1967-03-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (758891, 'Helen L. Webb', '2006-03-16', '1970-01-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (931485, 'Justin A. Lewis', '2000-12-30', '1967-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (838617, 'Martha Z. Russell', '1990-09-29', '1971-11-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (372075, 'Amy A. Hughes', '1990-12-31', '1959-02-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (768747, 'Betty X. Owens', '1996-01-21', '1954-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (356615, 'Carol E. Anderson', '1996-04-12', '1956-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (573719, 'Patrick Castro', '1999-05-29', '1966-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (605570, 'Gregory Edwards', '2002-02-09', '1971-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (898880, 'James O. Olson', '2000-03-02', '1967-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (883617, 'Lawrence S. Cox', '2017-10-30', '1973-04-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (735976, 'Robert F. Martinez', '2010-12-13', '1994-01-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (799650, 'Donna Price', '1991-11-15', '1951-01-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (662329, 'Scott E. Gutierrez', '1999-08-19', '1981-11-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (503266, 'Albert R. Allen', '2002-05-10', '1983-04-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (795774, 'Jason P. King', '2016-01-05', '1989-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777795, 'Donna C. Black', '1990-10-03', '1961-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (795768, 'George S. Thompson', '1995-01-30', '1963-02-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737974, 'Martha B. Thompson', '1997-02-20', '1971-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (755706, 'Keith Watson', '2008-10-14', '1988-12-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (171258, 'Samuel C. Hall', '1999-01-29', '1964-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (085614, 'George E. Alvarez', '1997-03-21', '1959-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876687, 'Dorothy V. Sullivan', '1997-12-16', '1970-12-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (063800, 'Maria Z. Palmer', '2013-01-17', '1991-10-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737737, 'Gary B. Wood', '1993-12-18', '1950-06-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (792408, 'Jessica O. Gonzalez', '2010-11-12', '1994-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (964226, 'Kimberly B. Henry', '2009-10-10', '1988-05-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728729, 'Steven V. Hughes', '2001-09-19', '1959-11-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (902966, 'Roger X. Phillips', '2015-04-30', '1998-07-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (957232, 'Nancy B. Medina', '2004-01-17', '1976-05-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (656228, 'Ralph Woods', '2002-06-20', '1980-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (792393, 'Eric U. Freeman', '2011-10-11', '1977-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (412681, 'Virginia M. Olson', '1998-12-12', '1955-03-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (574757, 'Nancy Gutierrez', '1992-01-05', '1947-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (372657, 'Barbara Griffin', '2002-03-12', '1981-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (997751, 'Nancy Meyer', '2009-02-10', '1965-12-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (999577, 'Jose Z. Powell', '1994-06-03', '1955-07-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (550898, 'George K. Thomas', '2004-06-24', '1979-06-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (650587, 'Jessica H. Adams', '1991-04-27', '1954-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (708987, 'Brian W. Thompson', '2015-12-16', '1998-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (884885, 'Nancy Hill', '2018-03-12', '1977-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (878698, 'Maria I. Alexander', '2018-05-26', '1999-05-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786847, 'Justin A. Weaver', '2017-12-24', '1989-05-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587651, 'Daniel Z. Freeman', '2001-05-16', '1983-09-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (673539, 'Lisa Romero', '2010-08-07', '1970-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (287700, 'Donald Sanders', '2016-04-08', '1980-05-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (616772, 'Justin M. Weaver', '2015-01-30', '1988-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (417490, ' C. Peterson', '1991-07-11', '1968-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587087, 'Carol V. Stephens', '2017-11-07', '1982-01-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (567488, 'Michael T. Morgan', '2007-04-17', '1977-07-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (579837, 'David Sanchez', '1997-09-24', '1971-01-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (508779, 'Douglas X. Wilson', '2000-12-29', '1957-12-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (481808, 'Peter W. Garcia', '2014-08-24', '1991-10-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777788, 'Brenda Ortiz', '2012-04-02', '1975-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (899101, 'Amy E. Brooks', '1997-07-19', '1965-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (678828, 'Jason O. Mills', '1998-08-07', '1962-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (886876, 'Brian M. Thompson', '1991-03-02', '1960-07-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (249880, 'Larry N. Ross', '1992-02-03', '1951-08-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (791234, 'Matthew Perez', '1998-01-29', '1981-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (002827, 'Steven H. Cook', '1998-05-30', '1975-11-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870018, 'Jennifer Lewis', '2012-02-20', '1971-02-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (789489, 'Raymond E. Griffin', '1996-02-06', '1959-07-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727742, 'Nancy D. Alexander', '1992-09-28', '1960-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (250747, 'Andrew G. Ross', '2004-09-30', '1968-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (428521, 'Harold L. Wright', '1993-03-30', '1972-06-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (188915, 'Ann Aguilar', '1998-04-28', '1981-01-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776917, 'Eric T. Bell', '2007-08-13', '1974-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (586183, 'Virginia Hunter', '2002-11-22', '1970-03-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888276, 'Michelle F. Griffin', '2013-09-03', '1996-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (705651, 'Jennifer James', '2013-12-01', '1983-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (817860, 'Susan Z. West', '2010-03-30', '1988-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (478430, 'Maria Jordan', '1993-09-30', '1957-07-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779672, 'Sarah R. Kim', '2018-03-13', '1979-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (348877, 'Maria Mendoza', '1995-03-20', '1958-07-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730777, 'Patrick L. Wallace', '2010-04-05', '1977-09-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (430046, 'Mark Q. Silva', '1990-01-14', '1953-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (137817, 'Joe Richardson', '1990-08-15', '1968-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (850775, 'Ronald Jenkins', '2015-06-12', '1981-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (489491, 'Amanda G. ', '2017-05-23', '1984-12-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (986851, 'Ralph L. Harris', '1999-05-22', '1968-06-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (405895, 'Anthony P. Ryan', '2012-03-04', '1969-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (988877, 'Virginia M. Sanchez', '1993-08-17', '1957-04-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (997747, 'Martha L. Lewis', '2001-09-11', '1968-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (479627, 'Anna L. Nelson', '1996-01-15', '1967-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787717, 'Ryan M. Stephens', '2013-08-31', '1982-07-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (440365, 'Anna T. Romero', '2002-09-03', '1969-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (761471, 'Gary S. Boyd', '2013-08-27', '1982-05-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (182378, 'Barbara F. Edwards', '1994-05-07', '1953-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (058727, 'Christopher U. Richardson', '2017-06-05', '1974-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797283, 'Arthur Z. Hall', '1993-01-09', '1956-09-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (797772, 'Amanda Griffin', '1997-06-01', '1959-01-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (855527, 'Timothy K. Owens', '2004-01-25', '1983-05-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (754612, 'Kimberly Gordon', '1994-03-20', '1966-05-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (801989, 'Samuel Palmer', '2014-04-01', '1985-07-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (675772, 'Ralph W. Cole', '1995-04-30', '1953-01-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (071727, 'Anna M. Mcdonald', '1999-07-20', '1974-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (831272, 'Jeffrey Jimenez', '1994-04-16', '1967-06-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (193259, 'Karen W. Munoz', '1997-11-18', '1971-03-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (821161, 'John Q. Shaw', '2001-09-26', '1961-02-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (867271, 'Nancy S. Long', '1996-11-28', '1962-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (838780, 'Kimberly M. Griffin', '2003-03-02', '1985-11-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (751678, 'John X. Vasquez', '2009-03-28', '1982-08-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (582111, 'Jessica Garcia', '2000-04-02', '1977-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277971, 'Patrick Nelson', '2016-08-29', '1989-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (720487, 'Roger X. Johnson', '2014-07-18', '1997-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (714793, 'Anthony T. Perry', '2008-09-24', '1972-04-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (261388, 'Dennis T. Henderson', '2001-03-20', '1967-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778869, 'Raymond L. Anderson', '2016-02-08', '1981-03-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (091377, 'Christopher Q. Weaver', '1991-01-04', '1967-01-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (978629, 'James V. Jones', '1994-08-28', '1975-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (588495, 'Amy U. Soto', '1998-03-28', '1976-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (958078, 'Dennis L. Rodriguez', '2016-09-26', '1987-12-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (807780, 'Betty Z. Weaver', '2019-08-28', '1999-02-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (548264, 'Donna Q. Daniels', '2018-07-08', '1982-10-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (038785, 'Sandra A. Olson', '1991-04-12', '1948-10-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757835, 'Kimberly Mendez', '1991-12-12', '1952-07-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778047, 'Amy R. Alvarez', '2011-11-20', '1981-01-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (796724, 'David A. Scott', '1995-08-15', '1975-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (760172, 'Anna Guzman', '1992-12-02', '1974-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (157798, 'Sarah E. Brooks', '2007-04-16', '1982-07-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (836750, 'Melissa H. Robertson', '2015-11-08', '1987-12-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (673746, 'Kenneth Bryant', '2012-06-06', '1969-08-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (457771, 'Anthony Rivera', '1998-03-20', '1979-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (326788, 'Angela L. Price', '2019-02-14', '1989-08-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587896, 'Jerry A. Ramirez', '1995-10-28', '1977-04-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (629771, 'Sarah G. Olson', '2017-06-29', '1988-07-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (575714, 'Douglas Hunter', '1990-03-24', '1964-07-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (156137, 'Anna U. Brown', '1995-01-03', '1956-01-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (523507, 'Stephen M. Thomas', '1996-10-11', '1951-11-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (760777, 'Gary Shaw', '1996-05-16', '1963-12-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (862377, 'Melissa A. Simmons', '2013-06-15', '1982-06-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (129867, 'Angela C. Robertson', '2005-09-30', '1976-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (918887, 'Sarah N. Gibson', '1990-03-03', '1948-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (188373, 'Steven U. Reynolds', '1996-07-25', '1972-02-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (755807, 'Timothy U. Long', '1990-06-15', '1947-11-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (680042, 'Martha C. Jordan', '2005-11-04', '1987-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (889383, 'Albert C. Herrera', '1990-09-03', '1959-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887203, 'Christine P. Reynolds', '2017-09-27', '1978-10-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788110, 'Christine G. Palmer', '1990-06-13', '1949-01-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (977850, 'Andrew H. Herrera', '1991-09-09', '1968-01-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (671817, 'Deborah U. Silva', '2016-12-02', '1982-08-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (664037, 'Martha West', '2012-02-24', '1975-08-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (712817, 'Jennifer Nichols', '2007-08-01', '1974-08-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (245856, 'Sarah E. Nichols', '1991-01-26', '1952-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (970768, 'Peter U. Martin', '1993-06-21', '1971-11-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (744557, 'Stephanie Cox', '1992-04-15', '1959-06-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (977534, 'Janet Q. Cook', '2014-04-29', '1987-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587685, 'Paul Washington', '2007-04-02', '1987-04-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (617047, 'Thomas D. Green', '1997-06-19', '1973-12-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (513157, 'Catherine F. Anderson', '2005-01-10', '1982-10-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (800396, 'Brian A. Patterson', '1992-12-23', '1973-07-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (725769, 'Sharon Ryan', '1998-12-20', '1979-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (130834, 'Marie Z. Fisher', '1991-04-02', '1969-06-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (705301, 'Kenneth Parker', '1996-01-18', '1976-05-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (711232, 'Joseph Olson', '1995-10-07', '1966-07-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (871908, 'Anthony I. Vargas', '1995-10-05', '1972-05-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (648201, 'Helen K. Bailey', '2009-07-11', '1989-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (783826, 'Melissa O. Perry', '2001-05-08', '1957-09-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (268509, 'Angela T. Washington', '1997-11-14', '1969-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (733140, 'Michelle Q. Jones', '1993-01-13', '1958-06-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (538865, 'Kevin V. Nichols', '2003-12-02', '1964-10-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (348972, 'Joe U. Reynolds', '1995-07-29', '1956-04-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (887897, 'Gregory Owens', '1998-05-15', '1978-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (023157, 'Janet V. Price', '2002-04-23', '1981-05-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (098099, 'Dorothy O. Foster', '2001-04-05', '1985-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786784, 'Stephen U. Hicks', '1996-07-12', '1972-02-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (074189, 'Raymond R. Richardson', '2005-02-27', '1979-04-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (483187, 'Ann L. Gutierrez', '2004-06-03', '1974-06-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (471517, 'Brian Crawford', '1994-08-25', '1968-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (816583, 'Elizabeth G. Reynolds', '2019-02-26', '1992-08-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857723, 'Ann Meyer', '1991-07-29', '1952-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (842071, 'Patrick Clark', '1993-07-22', '1958-10-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (804449, 'Steven M. Gordon', '1992-12-29', '1963-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (257393, 'Ronald Gray', '1990-09-03', '1972-03-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (581337, 'Janet D. Green', '2002-01-10', '1977-02-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (996224, 'Paul F. Perez', '2005-10-30', '1962-08-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772817, 'Arthur T. Wells', '2013-11-09', '1971-03-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (856770, 'Scott Weaver', '1991-04-11', '1969-06-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477788, 'Frank O. Murphy', '2010-12-19', '1980-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (480778, 'Mark K. Patel', '1997-06-10', '1969-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (723467, 'George D. Perry', '1998-08-02', '1976-06-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (104876, 'Susan Porter', '1999-02-01', '1977-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077404, 'Patrick C. Ryan', '1996-08-17', '1959-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (670337, 'Jerry H. King', '2009-05-30', '1966-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707777, 'Donna Ramirez', '1995-03-24', '1969-06-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727732, 'Frank L. Nelson', '2001-10-30', '1976-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (685707, 'Juan A. Schmidt', '1990-02-21', '1958-01-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (978309, 'Linda Hamilton', '2014-06-06', '1980-07-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (891291, 'Joshua V. Cole', '2014-12-20', '1993-03-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (370637, 'Roger G. Morales', '2004-09-06', '1962-06-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (895887, 'Ryan A. Diaz', '2019-04-09', '1990-09-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (928903, 'Patrick P. Price', '2002-04-23', '1959-10-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578222, 'Stephanie G. Romero', '1993-06-13', '1972-08-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (003773, 'Jennifer Aguilar', '1990-01-20', '1972-02-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (410584, 'Frank Q. Salazar', '1991-02-07', '1966-07-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (788878, 'Joseph Hill', '2000-10-06', '1975-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (580268, 'George L. Mendoza', '1996-06-23', '1966-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (040673, 'David T. Miller', '1995-07-07', '1960-09-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777498, 'Cynthia F. Hunter', '2019-05-14', '1985-06-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (986807, 'Ronald C. Burns', '2012-02-04', '1992-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (438827, 'Karen I. Burns', '2016-08-24', '1998-04-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (025167, 'Angela T. Perez', '2014-07-31', '1988-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (723574, 'Angela P. Richardson', '1999-12-01', '1982-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798850, 'Nancy Chavez', '2016-01-08', '1982-08-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177271, 'Linda M. Bailey', '2017-09-07', '1975-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (282837, 'Sarah Ramos', '1994-03-15', '1966-02-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777598, 'Martha T. Martinez', '1994-06-12', '1970-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (786747, 'Michael G. Snyder', '1997-01-25', '1974-06-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (617247, 'Joshua Salazar', '2019-05-02', '1981-10-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (983771, 'Helen H. Ramirez', '1999-07-15', '1975-08-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (368928, 'Richard U. Garza', '2009-05-22', '1971-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (499482, 'Ralph V. Snyder', '2008-08-14', '1974-10-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (573468, ' Howard', '2000-12-28', '1964-01-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (882079, 'Donald C. Garcia', '1990-09-02', '1970-09-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (297072, 'Kimberly V. Martinez', '2010-05-18', '1974-06-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872988, 'Lawrence L. Black', '1996-08-20', '1965-08-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (751117, 'Jonathan L. Murphy', '1991-09-16', '1950-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (177877, 'Edward K. Morris', '2016-04-19', '1991-08-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (726045, 'Amanda R. Holmes', '2013-05-10', '1990-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (075881, 'Jonathan Meyer', '2009-06-11', '1992-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (234282, 'Karen D. Clark', '1999-06-12', '1968-05-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (183026, 'Stephanie Rose', '1991-04-13', '1973-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (897271, 'Keith V. Warren', '1991-07-17', '1960-09-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (182547, 'Henry D. Ramos', '2003-09-29', '1961-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (728351, 'Joseph Patterson', '2018-03-13', '1978-09-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (738575, 'Betty Ford', '2000-03-13', '1984-03-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (046772, 'Ann O. Flores', '1996-05-18', '1975-07-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (374889, 'Donald V. Munoz', '1997-08-14', '1973-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (073807, 'Marie F. Shaw', '2012-02-11', '1984-02-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774862, 'Albert L. Patel', '2011-03-13', '1984-05-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (738567, 'Lawrence U. Marshall', '2009-11-27', '1966-06-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (760064, 'Donna J. Gomez', '1991-04-06', '1971-05-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (299634, 'Willie X. Nichols', '2016-05-09', '1996-07-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (628884, 'Kathleen Fernandez', '1992-06-10', '1951-04-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (225619, 'Carl P. Olson', '1997-05-21', '1954-07-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (446947, 'Larry U. James', '2012-07-22', '1982-03-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (172860, 'Lisa Wright', '2003-03-06', '1964-11-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (076991, 'Gerald Kennedy', '1991-12-18', '1967-07-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (267005, 'Kevin Q. Richardson', '1999-09-12', '1965-08-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (411778, 'Barbara A. Wagner', '1998-07-23', '1954-08-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (501842, 'Mark M. Moore', '1995-08-18', '1963-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (580899, 'Steven B. Hunt', '1994-12-13', '1966-05-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747837, 'Lisa T. Patel', '1996-12-16', '1960-06-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477415, 'Richard Ellis', '2003-07-26', '1960-04-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (813077, 'Margaret E. Robinson', '2017-06-29', '1972-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (382790, 'Ryan Q. Washington', '1992-01-29', '1966-02-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (087879, 'Willie F. Lopez', '1993-10-16', '1953-04-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (578176, 'Michael L. Smith', '2004-12-02', '1973-12-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (767687, 'Joseph O. Mcdonald', '1997-01-06', '1969-07-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577027, 'Jose D. Cruz', '1995-12-18', '1962-01-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (401703, 'George Moreno', '2006-01-29', '1965-07-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (255784, 'Carl Cruz', '2019-10-25', '2002-02-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (537187, 'Catherine U. Morris', '1990-06-20', '1962-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (569712, 'Larry Ortiz', '2015-02-16', '1977-04-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (817886, 'Willie Ramos', '2006-12-08', '1964-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077780, 'Helen Z. Sullivan', '2001-12-15', '1964-11-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787882, 'Gerald Wood', '1998-12-26', '1966-09-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (045707, 'Roger G. White', '2009-09-20', '1967-09-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (757217, 'Ruth R. Warren', '1995-06-25', '1952-08-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (027049, 'William N. Taylor', '2011-02-17', '1968-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (373461, 'Albert Bennett', '2019-04-26', '1988-09-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (423036, 'Margaret Mason', '2007-11-17', '1966-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (389976, 'Lisa X. Moreno', '1992-12-06', '1969-02-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (491970, 'Angela S. Anderson', '1997-07-19', '1970-08-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (527899, 'Karen Q. Mendez', '1994-09-29', '1964-11-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (402703, 'Stephen D. Hunter', '2002-01-21', '1981-04-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (726386, 'Eric I. Munoz', '1993-09-08', '1954-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (129781, 'Jessica E. Parker', '2014-08-25', '1995-08-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (297587, 'Nancy L. West', '2000-10-01', '1962-10-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (457656, 'Peter U. Schmidt', '1990-01-15', '1972-10-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876897, 'Gerald Z. Martin', '1995-12-11', '1952-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (687479, 'Arthur H. Murphy', '1992-10-17', '1975-11-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (867254, 'Amanda M. Mendoza', '2003-01-26', '1966-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (949874, 'Stephen F. Coleman', '2006-08-05', '1966-07-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (607727, 'Roger N. Wood', '2002-05-15', '1968-07-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (879790, 'Anna E. Murray', '2006-06-19', '1966-07-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (545322, 'Christopher H. Perez', '2002-05-31', '1977-09-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (888997, 'Kevin Nelson', '1990-06-21', '1960-06-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (066424, 'Jennifer L. Price', '1990-11-02', '1969-01-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (588882, 'Ralph N. Silva', '1990-01-28', '1969-01-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (865576, 'Ruth O. Rose', '2002-08-16', '1966-03-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (170828, 'Laura L. Smith', '1995-05-10', '1968-01-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (575097, 'Henry L. Perry', '2015-12-07', '1983-07-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777178, 'David U. Butler', '1992-11-13', '1959-08-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (282619, 'Barbara G. Ryan', '1993-06-12', '1965-02-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770473, 'Catherine Allen', '1991-09-06', '1950-07-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (536558, 'Susan V. Reed', '2011-06-24', '1971-01-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747048, 'Patrick Freeman', '1994-10-29', '1977-03-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (272008, 'Stephen V. Hill', '1996-02-18', '1952-07-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (748686, 'Stephanie R. Rogers', '1991-05-02', '1971-12-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (488774, 'Larry C. Stewart', '2012-03-01', '1990-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587554, 'Joe Alexander', '2016-10-30', '1977-12-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (941687, 'Ralph D. Flores', '2002-10-29', '1983-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (069146, 'Scott J. Reyes', '2001-06-02', '1982-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (660765, 'Mark Hayes', '1997-03-01', '1964-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (687729, 'Walter Burns', '2003-01-12', '1972-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (140213, 'Edward H. Hill', '1997-12-01', '1979-12-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (717618, 'Dennis D. Lewis', '2012-04-16', '1973-11-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876659, 'Robert C. Hicks', '2017-08-29', '1975-11-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (748276, 'William Mcdonald', '1998-01-08', '1964-04-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (755877, 'Donald Alexander', '1993-07-09', '1958-09-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (835277, 'Gregory R. Gibson', '2019-10-21', '1994-02-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (897778, 'Stephanie A. Baker', '1997-03-21', '1978-05-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (035263, 'Joseph H. Mills', '1991-05-09', '1975-07-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (903828, 'Gerald H. Rice', '2018-07-27', '1996-05-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (992689, 'Terry I. Henry', '1991-03-30', '1954-03-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (076076, 'Nancy West', '2007-04-24', '1987-12-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (527389, 'Barbara L. Cruz', '2019-06-06', '1980-10-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (789982, 'Virginia Z. Gray', '1996-04-28', '1979-06-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (958745, 'Terry Bryant', '2013-01-17', '1983-12-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778577, 'Dennis Flores', '2015-06-20', '1978-08-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (182778, 'Carl U. Wright', '2011-08-11', '1980-05-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773120, 'Lawrence S. Bell', '1997-10-08', '1955-12-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (876073, 'Shirley Q. Kennedy', '1995-06-26', '1960-07-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (917097, 'Debra E. Vasquez', '1991-05-30', '1954-03-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (737210, 'Jessica Salazar', '2016-03-26', '1998-08-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (743507, 'Willie P. Gutierrez', '2004-02-22', '1959-10-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (783588, 'Jeffrey Mason', '1995-09-02', '1956-06-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (280987, 'Carl D. Collins', '2009-07-18', '1970-01-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (411757, 'Kevin L. Perez', '2005-04-02', '1982-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (827700, 'Arthur P. Murphy', '2011-09-26', '1974-09-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (070666, 'Cynthia N. West', '1992-08-17', '1961-09-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (504046, 'Willie U. Brooks', '1991-09-14', '1972-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (397066, 'Richard D. ', '1998-03-01', '1954-10-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (857782, 'Patrick V. Hunt', '1998-08-24', '1964-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (336962, 'Frances L. Stephens', '2006-04-06', '1964-12-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (749867, 'Jack M. Murphy', '2005-07-18', '1987-07-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787781, 'Robert S. Brown', '2000-03-01', '1959-01-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (676071, 'John L. Owens', '2003-11-10', '1960-02-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781487, 'Margaret Gonzales', '1993-02-24', '1960-09-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (654772, 'Dorothy C. Gibson', '1992-06-10', '1958-07-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780846, 'William L. Hall', '2010-08-03', '1976-07-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (267748, 'Virginia G. Thomas', '2014-02-07', '1984-03-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (938868, 'Justin F. Phillips', '2006-03-27', '1973-09-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (695587, 'Terry R. James', '1998-12-23', '1982-01-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (802753, 'Maria P. Silva', '2008-11-22', '1991-05-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (733811, 'Frank U. Washington', '2013-04-22', '1974-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (787287, 'Douglas D. Martin', '2011-09-06', '1973-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (727326, 'Barbara Ruiz', '1995-05-14', '1967-03-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (275925, 'Walter N. Edwards', '2008-06-08', '1970-08-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (868832, 'Willie Jenkins', '2000-09-19', '1962-12-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (879617, 'Debra V. Williams', '2002-10-27', '1968-07-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (252436, 'Lisa H. James', '2018-12-06', '1992-11-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (576118, 'Kenneth T. Williams', '2013-09-09', '1989-10-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (253729, 'Jessica K. Allen', '1998-11-19', '1963-11-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (873547, ' Perry', '1996-12-30', '1953-07-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (387782, 'Robert Olson', '2003-10-16', '1970-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777779, 'Kevin U. Gordon', '2012-11-08', '1992-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (077790, 'Angela R. Ortiz', '1992-05-31', '1956-05-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (291260, 'Jonathan T. Perry', '2005-03-14', '1977-06-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (098277, 'Michelle Lopez', '1993-01-31', '1967-05-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (988925, 'Deborah W. Lopez', '2010-09-11', '1986-11-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (798809, 'Elizabeth Watson', '1995-03-07', '1964-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (759911, 'Anna Cook', '2003-01-31', '1969-11-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (978823, 'Christine Z. Soto', '1995-07-27', '1974-12-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (132781, 'Rebecca Snyder', '2004-04-06', '1979-06-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (800631, 'Jason F. Ellis', '2013-01-10', '1973-12-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (217771, 'Nancy Z. Kelly', '1994-05-30', '1972-11-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (407175, 'Patricia H. Green', '2004-05-05', '1961-11-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (744828, 'Anthony Z. Jenkins', '1992-07-27', '1970-07-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (573714, 'Maria U. Lee', '1990-11-28', '1953-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (277117, 'Sarah I. Allen', '2013-06-11', '1986-07-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877118, 'Jose T. Sullivan', '2005-05-08', '1973-08-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (041728, 'Patricia J. Hughes', '1997-08-15', '1978-09-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (793723, 'Virginia D. Garza', '2018-10-27', '1996-12-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (133478, 'Catherine Russell', '2008-09-28', '1979-07-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (508577, 'Amy H. King', '2019-04-03', '1994-05-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (522423, 'Timothy N. Snyder', '2016-01-20', '1993-03-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (458870, 'Christopher F. Barnes', '1991-04-25', '1968-09-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (740725, 'Brian K. Chen', '2017-04-03', '1972-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774167, 'Brian F. Henderson', '2002-07-29', '1962-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (852174, 'Rebecca V. Scott', '1995-03-25', '1956-05-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (567735, 'Samuel Q. Fernandez', '2007-06-09', '1979-04-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (657738, 'Melissa G. West', '1996-04-06', '1955-02-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (542862, 'Donald Z. Stewart', '1998-07-25', '1956-02-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707876, 'John Allen', '1991-09-10', '1963-04-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (621727, 'Mary Ross', '1996-04-18', '1966-04-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (772594, 'Kathleen Vargas', '2004-02-20', '1967-09-22') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (867370, 'Maria Hunt', '1990-05-25', '1962-03-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (802462, 'Stephanie R. Murphy', '2011-09-03', '1971-01-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (482486, 'Donna B. Medina', '1997-09-23', '1978-03-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (717364, 'Stephanie D. Brooks', '1992-10-07', '1962-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776940, 'Jessica Thompson', '1995-07-20', '1963-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (009207, 'Anthony A. Flores', '2004-10-20', '1977-05-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (773007, 'Nancy T. White', '2011-08-29', '1981-06-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (307786, 'Henry V. Martinez', '2018-09-29', '1978-02-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (776996, 'Douglas P. Young', '1995-10-31', '1957-04-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (197915, 'Ralph Z. Griffin', '2005-11-12', '1963-02-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (915876, 'Lawrence Boyd', '2015-02-08', '1990-11-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (825711, 'Ryan U. Gomez', '1992-01-14', '1952-12-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (176377, 'Dennis U. Moore', '2013-06-27', '1986-10-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (587877, 'Joe S. Stone', '2006-01-15', '1982-02-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (208212, 'Raymond Ward', '1994-08-18', '1958-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (779236, 'Patrick Hall', '1992-03-28', '1970-09-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870950, 'Angela Robertson', '1998-07-13', '1966-03-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (341776, 'Samuel T. Lopez', '2007-09-22', '1980-10-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (815907, 'Shirley Soto', '2012-02-01', '1985-02-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877903, 'Albert U. Gibson', '2007-03-26', '1987-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (288177, 'Joe L. Salazar', '1996-03-06', '1951-10-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (862488, 'Karen Flores', '1999-02-06', '1969-04-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (646748, 'Dennis M. Moore', '1997-09-06', '1960-03-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (799786, 'Lawrence U. Thomas', '2007-07-27', '1989-03-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877772, 'Michelle V. Russell', '2004-09-20', '1969-10-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (266718, 'Maria S. Hunter', '1990-08-25', '1960-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (454677, 'John U. Richardson', '1998-05-07', '1972-06-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (740268, 'Shirley B. Harrison', '2013-11-04', '1975-11-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (301719, 'Kevin B. Woods', '2018-12-14', '1982-07-26') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (416068, 'Gerald A. Mason', '2003-02-26', '1967-07-23') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (877178, 'Rebecca E. Collins', '2006-06-18', '1985-05-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771958, 'Stephanie F. Owens', '2019-04-11', '1992-04-14') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (249987, 'Kenneth U. Barnes', '2010-07-18', '1968-08-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (377957, 'Laura A. Nelson', '1996-03-02', '1967-04-04') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (747772, 'Carolyn Jordan', '2000-07-29', '1957-09-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (517332, 'Patricia N. Fox', '1996-08-21', '1966-11-16') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (203488, 'Michael W. Patel', '2013-07-08', '1986-09-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (780866, 'Margaret T. Hernandez', '2013-10-14', '1982-02-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (730020, 'Richard U. Crawford', '1990-04-27', '1947-06-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777213, 'Matthew Russell', '2017-07-20', '1998-10-17') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (357060, 'Steven U. Stone', '1997-07-01', '1980-12-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (545976, 'Kimberly S. Watson', '2014-07-11', '1990-01-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (777767, 'Maria D. Schmidt', '1999-09-15', '1973-10-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (778887, 'David R. Marshall', '1999-08-31', '1969-05-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (781875, 'Juan U. West', '2016-06-16', '1971-08-25') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (393778, 'Carol M. Tucker', '2004-08-21', '1971-12-07') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (872889, 'Anthony C. Bell', '2017-01-26', '1998-03-15') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (992673, 'Andrew R. Jimenez', '2012-09-04', '1970-08-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (770794, 'Jack Kim', '1998-04-28', '1970-07-03') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (477877, 'Robert Ellis', '2000-08-12', '1976-10-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (536787, 'Keith U. Brown', '1991-12-19', '1951-09-10') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (476808, 'Scott Lewis', '2018-12-24', '1976-10-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (717488, 'Lawrence Webb', '2015-02-06', '1996-07-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (774803, 'Jose H. Wood', '1994-02-27', '1966-04-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (597708, 'Christine B. Hunter', '1992-10-23', '1960-01-06') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (834510, 'Melissa L. Salazar', '1991-06-03', '1968-12-05') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (084769, 'Lisa I. Reed', '2006-03-19', '1973-06-02') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (766979, 'Robert Q. Rodriguez', '2016-09-12', '1995-01-20') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (685077, 'Maria Ruiz', '1995-09-10', '1966-09-18') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (348893, 'Carolyn L. Aguilar', '2011-03-19', '1977-01-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (096787, 'Ruth O. Wood', '2001-05-09', '1974-05-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (855768, 'Maria Hunt', '1991-10-31', '1974-04-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (742749, 'Matthew D. Hughes', '1990-11-16', '1951-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (121322, 'Ralph U. Peterson', '2006-03-24', '1983-08-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (270491, 'Jose L. Webb', '2012-11-01', '1984-06-09') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (577851, 'Sandra Weaver', '1998-09-25', '1964-04-12') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (854407, 'Christopher K. Williams', '1992-09-17', '1963-08-21') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (735977, 'Betty Williams', '1990-08-28', '1968-04-27') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (771787, 'Kenneth A. Peterson', '1994-07-09', '1977-04-28') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (271799, 'Cynthia B. Miller', '1991-06-08', '1967-07-31') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (448302, 'Gregory A. Bryant', '2001-08-26', '1979-09-11') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (145351, 'Donna L. Jackson', '2010-12-29', '1974-07-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (870793, 'Henry Morris', '2009-09-19', '1988-05-01') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (874733, 'Justin Wallace', '2015-03-25', '1975-04-13') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (684974, 'John A. Wallace', '2002-03-06', '1978-01-24') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (119769, 'Lawrence L. Tucker', '2015-09-03', '1982-10-19') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (790577, 'Deborah G. Sanders', '1990-03-28', '1956-01-29') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (707796, 'Samuel Dixon', '1998-05-05', '1980-05-30') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (360672, 'Brian S. Taylor', '1995-04-28', '1977-04-08') | |
INSERT INTO [Students] ([Number],[Name],[GraduationDate],[BirthDate]) | |
VALUES (979801, 'Lisa Reynolds', '2007-01-26', '1968-03-24') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment