Insert Statement
Insert Statement
================================
INSERT INTO Clinic_Info (clinic_id, clinic_name, registration_no,
address,tin_number, last_renew, last_aduit, phone_no, email)
VALUES (1281000,'LIFE CARE CLINIC',159357, '271 Green Road',852654, '01-Dec-
2020','06-May-2022','+13454600','[email protected]');
Departments
===============================
JOBS
===================
Employees
====================
ROOMS
===========================
INSERT INTO rooms (room_id, room_type, floor, employee_id )
VALUES (1,'Consultation', 1st, );
DEPARTMENT_ROOMS
====================================================
Doctor_Schedule
======================================================================
===============================================================
Test_info
==========
1.
insert into test_info
(test_id,test_name,t_category_id ,patient_id,employee_id,
test_cost,test_date,status,
result,precaution,default_value)
values(1,'Typhidot',1,10,100,500,'02-JULY-24',null,'Positive',null,null);
2.
insert into test_info
(test_id,test_name,t_category_id ,patient_id,employee_id,
test_cost,test_date,status,
result,precaution,default_value)
values(2,'Hb%',2,20,101,300,'03-JULY-24',null,'Negative',null,null);
3.
insert into test_info
(test_id,test_name,t_category_id ,patient_id,employee_id,
test_cost,test_date,status,
result,precaution,default_value)
values(3,'CBC',3,30,102,400,'05-JULY-24',null,'Negative',null,null);
4.
insert into test_info
(test_id,test_name,t_category_id ,patient_id,employee_id,
test_cost,test_date,status,
result,precaution,default_value)
values(4,'Dengue Test',4,40,103,500,'06-JULY-24',null,'Negative',null,null);
5.
insert into test_info
(test_id,test_name,t_category_id ,patient_id,employee_id,
test_cost,test_date,status,
result,precaution,default_value)
values(5,'Blood Urea Nitrogen (BUN)',5,50,104,600,'07-JULY-
24',null,'Negative',null,null);
Test_category
==============
1.
insert into test_category
(T_CATEGORY_ID,T_CATEGORY_NAME,DESCRIPTION,CREATED_DATE,LAST_UPD_DATE,AVAILABILITY)
values(1,'Blood',null,'6-MAR-23',SYSDATE,'YES');
2.
insert into test_category
(T_CATEGORY_ID,T_CATEGORY_NAME,DESCRIPTION,CREATED_DATE,LAST_UPD_DATE,AVAILABILITY)
values(2,'Thyroid function',null,'7-MAR-23',SYSDATE,'YES');
3.
insert into test_category
(T_CATEGORY_ID,T_CATEGORY_NAME,DESCRIPTION,CREATED_DATE,LAST_UPD_DATE,AVAILABILITY)
values(3,'Thyroid function',null,'8-MAR-23',SYSDATE,'No');
4.
insert into test_category
(T_CATEGORY_ID,T_CATEGORY_NAME,DESCRIPTION,CREATED_DATE,LAST_UPD_DATE,AVAILABILITY)
values(4,'toxicology',null,'8-MAR-23',SYSDATE,'No');
5.
insert into test_category
(T_CATEGORY_ID,T_CATEGORY_NAME,DESCRIPTION,CREATED_DATE,LAST_UPD_DATE,AVAILABILITY)
values(5,'Hormone',null,'8-MAR-23',SYSDATE,'No');
setup
======
1.
insert into setup
(setup_id,opd_tkt_value,created_date,last_upd_date)
values(1,20,'20-JAN-21','10-JAN-20');
2.
insert into setup
(setup_id,opd_tkt_value,created_date,last_upd_date)
values(2,30,'20-JAN-21','10-JAN-21');
3.
insert into setup
(setup_id,opd_tkt_value,created_date,last_upd_date)
values(3,40,'20-JAN-21','10-JAN-22');
4.
insert into setup
(setup_id,opd_tkt_value,created_date,last_upd_date)
values(4,50,'20-JAN-21','10-JAN-23');
5.
insert into setup
(setup_id,opd_tkt_value,created_date,last_upd_date)
values(5,60,'20-JAN-21','10-JAN-24');
supplier
=========
1.insert into supplier
(supplier_id,supplier_name,address,phone_number,email)
values(10101,'Abel','mirpur-1','01730921414','abel@gmai');
2.
insert into supplier
(supplier_id,supplier_name,address,phone_number,email)
values(10102,'King','mirpur-1','01730921415','king@gmai');
3.
insert into supplier
(supplier_id,supplier_name,address,phone_number,email)
values(10103,'Cimi','mirpur-1','01730921416','cimi@gmai');
4
insert into supplier
(supplier_id,supplier_name,address,phone_number,email)
values(10104,'Kel','mirpur-1','01730921417','kel@gmai');
5
insert into supplier
(supplier_id,supplier_name,address,phone_number,email)
values(10105,'Noya','mirpur-1','01730921417','noya@gmai');
medicine_info
=============
1.
insert into medicine_info
(medicine_id,medicine_name,m_category_id,generic_name,brand_name,description,
indication,side_effects, batch_number,production_date,
expiry_date,cost)
values(101,'Napa',1,'Paracetamol','beximco pharma',null,'fever','no',321131,
'12-MAR-21','20-JUN-2025',5);
2.
insert into medicine_info
(medicine_id,medicine_name,m_category_id,generic_name,brand_name,description,
indication,side_effects, batch_number,production_date,
expiry_date,cost)
values(101,'Sergel',2,'Esomeprazole','beximco pharma',null,'Gastric','no',321413,
'12-MAR-21','20-JUN-2025',10);
3.