0% found this document useful (0 votes)
22 views1 page

CS Database

The document contains 14 INSERT statements that add records for patients to a Patient table. Each record includes the patient's ID, name, phone number, email, address, registration date, and doctor ID.

Uploaded by

Native Tanzanian
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views1 page

CS Database

The document contains 14 INSERT statements that add records for patients to a Patient table. Each record includes the patient's ID, name, phone number, email, address, registration date, and doctor ID.

Uploaded by

Native Tanzanian
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Patient Table Insert

INSERT INTO Patient VALUES ('P1', 'Patient Dana', '444-1212', '[email protected]', '123 Home St.', '2019-11-
02', 'D2')

INSERT INTO Patient VALUES ('P2', 'Patient Harry', '444-2943', '[email protected]', '3435 Main St.', '2019-
11-02', 'D7')

INSERT INTO Patient VALUES ('P3', 'Patient Karl', '444-6723', '[email protected]', '2176 Baker St.', '2019-11-
02', 'D6')

INSERT INTO Patient VALUES ('P4', 'Patient Sid', '444-1745', '[email protected]', '176 Right St.', '2019-11-
02', 'D2')

INSERT INTO Patient VALUES ('P5', 'Patient Marry', '444-6565', '[email protected]', '435 Main St.', '2019-11-
02', 'D8')

INSERT INTO Patient VALUES ('P6', 'Patient Kim', '444-4889', '[email protected]', '34 Home St.', '2019-11-
02', 'D6')

INSERT INTO Patient VALUES ('P7', 'Patient Susan', '444-4581', '[email protected]', '65 Water St.', '2019-11-
02', 'D4')

INSERT INTO Patient VALUES ('P8', 'Patient Sam', '444-7891', '[email protected]', '23 Hill Drive', '2019-11-
02', 'D3')

INSERT INTO Patient VALUES ('P9', 'Patient Peter', '444-7791', '[email protected]', '12 River St.', '2019-11-
02', 'D2')

INSERT INTO Patient VALUES ('P10', 'Patient Nick', '123-1212', '[email protected]', '335 Bay St.', '2019-11-
02', 'D5')

INSERT INTO Patient VALUES ('P11', 'Patient Kyle', '123-2934', '[email protected]', '216 Baker St.', '2019-
11-02', 'D9')

INSERT INTO Patient VALUES ('P12', 'Patient Garcia', '123-1745', '[email protected]', '176 Right St.', '2019-
11-02', 'D9')

INSERT INTO Patient VALUES ('P13', 'Patient Alicia', '123-6565', '[email protected]', '823 Left St.', '2019-
11-02', 'D4')

INSERT INTO Patient VALUES ('P14', 'Patient Dan', '123-4527', '[email protected]', '534 Home St.', '2019-
11-02', 'D4')

You might also like