0% found this document useful (0 votes)
19 views2 pages

Ssss

The document contains SQL statements that insert 10 rows of data into multiple tables related to a veterinary clinic database. The tables include owners, animals, doctors, appointments, invoices, and medical records. Data is inserted for 10 owners, their animals, doctors at the clinic, appointments for the animals, invoices for the appointments, and medical records for each animal visit.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views2 pages

Ssss

The document contains SQL statements that insert 10 rows of data into multiple tables related to a veterinary clinic database. The tables include owners, animals, doctors, appointments, invoices, and medical records. Data is inserted for 10 owners, their animals, doctors at the clinic, appointments for the animals, invoices for the appointments, and medical records for each animal visit.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

feat/insert-10-rows-owners

INSERT INTO
owners(ownerid,ofirstname,olastname,address,phone,email)
VALUES
(1,'Juan','Dela Cruz', '123 Main St, Manila','123-456-7890',
'juan@example.com'),
(2,'Maria','Santos', '456 Elm St, Quezon City','987-654-3210',
'maria@example.com'),
(3,'Antonio','Gonzales', '789 Oak St, Cebu','555-123-4567',
'antonio@example.com'),
(4,'Elena','Rodrigez', '345 Pine St, Davao','777-888-9999',
'elena@example.com'),
(5,'Ricardo','Lim', '987 Cedar St, Makati','222-333-4444',
'ricardo@example.com'),
(6,'Isabel','Reyes', '111 Acacia St, Pasig','999-000-1111',
'isabel@example.com'),
(7,'Luis','Torres', '555 Maple St, Mandaluyong','123-555-7777',
'luis@example.com'),
(8,'Carmen','Fernandez', '222 Birch St, Taguig','333-222-1111',
'carmen@example.com'),
(9,'Pedro','Santillan', '888 Spruce St, Bacolod','888-777-6666',
'pedro@example.com'),
(10,'Sofia','Villanueva', '777 Walnut St, Iloilo','111-999-3333',
'sofia@example.com');

feat/insert-10-rows-animals
INSERT INTO
animals(animalid, name, species, breed, dateofbirth, gender, color, ownerid)
VALUES
(1, 'Fido', 'Dog', 'Golden Retriever', '2018-03-15', 'Male', 'Golden', 1),
(2, 'Whiskers', 'Cat', 'Siamese', '2019-07-20', 'Female', 'Cream', 2),
(3, 'Rocky', 'Dog', 'German Sheperd', '2017-05-10', 'Male', 'Black and Tan',
3),
(4, 'Fluffy', 'Cat', 'Persian', '2020-01-30', 'Male', 'White', 4),
(5, 'Luna', 'Dog', 'Labrador Retriever', '2019-11-25', 'Female', 'Yellow',5),
(6, 'Mochi', 'Cat', 'Maine Coon', '2018-09-12', 'Male', 'Brown Tabby', 6),
(7, 'Bella', 'Dog', 'Poodle', '2020-04-05', 'Female', 'White', 7),
(8, 'Simba', 'Cat', 'Bengal', '2018-06-18', 'Male', 'Spotted Rosetted', 8),
(9, 'Max', 'Dog', 'Dachshuhd', '2020-07-14', 'Male', 'Black and Tan', 9),
(10, 'Cleo', 'Cat', 'Ragdoll', '2019-12-22', 'Female', 'Seal Point', 10);

feat/insert-10-rows-doctors
INSERT INTO
doctors(doctorid,dfirstname,dlastname,specialty,phone,email)
VALUES
(1,'Dr. Maria','Santos','General Veterinarian','987-654-
3210','maria@example.com'),
(2,'Dr. Antonio','Gonzales','Feline Specialist','555-123-
4567','antonio@example.com'),
(3,'Dr. Felipe','Luna','Orthopedic Specialist','111-222-
3333','felipe@example.com'),
(4,'Dr. Sofia','Reyes','Dermatology Specialist','999-888-
7777','sofia@example.com'),
(5,'Dr. Luis','Torres','Surgery Specialist','123-555-7777','luis@example.com'),
(6,'Dr. Carmen','Fernandez','Opthalmology Specialist','333-222-
1111','carmen@example.com');

feat/insert-10-rows-invoices
INSERT INTO
appointments(appointid,animalid,appointdate,reason)
VALUES
(1,1,'2023-01-05','Annual-check-up'),
(2,2,'2023-01-10','Vaccination'),
(3,3,'2023-02-02','Injury assestment'),
(4,4,'2023-02-15','Dental cleaning'),
(5,5,'2023-03-05','Skin condition'),
(6,6,'2023-03-10','Check for fleas'),
(7,7,'2023-04-12','Vaccination'),
(8,8,'2023-04-18','Spaying/neutring'),
(9,9,'2023-05-02','Allergy treatment'),
(10,10,'2023-05-20','Eye Infection');

feat/insert-10-rows-appointments
INSERT INTO
invoices(invoiceid,appointid,totalamount,paymentdate)
VALUES
(1,2,50.00,'09:30:00'),
(2,2,75.00,'14:15:00'),
(3,3,100.00,'11:00:00'),
(4,4,200.00,'11:00:00'),
(5,5,80.00,'10:30:00'),
(6,6,30.00,'15:00:00'),
(7,7,75.00,'09:15:00'),
(8,8,150.00,'16:30:00'),
(9,9,60.00,'14:45:00'),
(10,10,40.00,'11:30:00');

feat/insert-10-rows-medicalrecords
INSERT INTO

medicalrecords(recordid,animalid,recorddate,doctorid,diagnosis,prescription,notes)
VALUES
(1,1,'2023-01-05 00:00:00',1,'Healthy check','N/A','Regular check-up,no
issues detected'),
(2,2,'2023-01-10 00:00:00',1,'Vaccination','Vaccine X','Administered
vaccination X as per schedule'),
(3,3,'2023-02-02 00:00:00',3,'Sprained leg','Pain medication','Rest
recommended for two weeks'),
(4,4,'2023-02-15 00:00:00',1,'Dental Cleaning','N/A','Completed dental
cleaning procedure'),
(5,5,'2023-03-05 00:00:00',4,'Skin Infection','Antibiotics','Prescribed
antibiotics'),
(6,6,'2023-03-10 00:00:00',2,'Flea infestation','Flea
treatment','Administered flea treatment'),
(7,7,'2023-04-12 00:00:00',1,'Vaccination','Vaccine Y','Administered
vaccination Y as per schedule'),
(8,8,'2023-04-18 00:00:00',5,'Spaying','N/A','Successfully performed spaying
surgery'),
(9,9,'2023-05-02 00:00:00',4,'Allergic reaction','Antihismines','Allergic
reaction due to food; prescribed antihistamine'),
(10,10,'2023-05-20 00:00:00',6,'Conjunctivitis','Eye drops','Prescribed eye
drops for conjuctivitys');

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy