Dms Queries
Dms Queries
CREATE TABLE Billing (billing_id number(8) PRIMARY KEY,patient_id number(4) NOT NULL,amount
number(9) NOT NULL,billing_date DATE NOT NULL,FOREIGN KEY (patient_id) REFERENCES
Patient(patient_id));
desc patient;
desc doctor;
desc Billing;
desc Appointment;
desc test_report;
desc appointment;