SlideShare a Scribd company logo
1 of 17
# Dump File
#
# Database is ported from MS Access
#--------------------------------------------------------
# Program Version 3.0.148
CREATE DATABASE IF NOT EXISTS `hospital_2010`;
USE `hospital_2010`;
#
# Table structure for table 'admission'
#
DROP TABLE IF EXISTS `admission`;
CREATE TABLE `admission` (
`Admission_id` INTEGER NOT NULL,
`Patient_id` INTEGER,
`Admission_date` DATETIME,
`Expected_op` VARCHAR(4),
`Admitted_by` INTEGER,
`Ward_code` VARCHAR(3),
`Discharge_date` DATETIME,
PRIMARY KEY (`Admission_id`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'admission'
#
INSERT INTO `admission` (`Admission_id`, `Patient_id`,
`Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`,
`Discharge_date`) VALUES (205, 101, '1992-02-02 00:00:00',
'HB', 114, 'P', '1992-02-16 00:00:00');
INSERT INTO `admission` (`Admission_id`, `Patient_id`,
`Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`,
`Discharge_date`) VALUES (274, 109, '1994-09-01 00:00:00',
'AP', 114, 'P', '1994-09-09 00:00:00');
INSERT INTO `admission` (`Admission_id`, `Patient_id`,
`Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`,
`Discharge_date`) VALUES (275, 101, '1994-09-01 00:00:00',
'HB', 115, 'L', NULL);
INSERT INTO `admission` (`Admission_id`, `Patient_id`,
`Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`,
`Discharge_date`) VALUES (276, 106, '1994-08-24 00:00:00',
'LA', 114, 'P', '1994-09-05 00:00:00');
INSERT INTO `admission` (`Admission_id`, `Patient_id`,
`Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`,
`Discharge_date`) VALUES (277, 114, '1994-09-02 00:00:00',
'AP', 115, 'P', '1994-09-10 00:00:00');
INSERT INTO `admission` (`Admission_id`, `Patient_id`,
`Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`,
`Discharge_date`) VALUES (278, 105, '1995-01-01 00:00:00',
'HB', NULL, NULL, NULL);
INSERT INTO `admission` (`Admission_id`, `Patient_id`,
`Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`,
`Discharge_date`) VALUES (279, 103, '1994-09-03 00:00:00',
'TS', 115, 'F', '1994-09-06 00:00:00');
INSERT INTO `admission` (`Admission_id`, `Patient_id`,
`Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`,
`Discharge_date`) VALUES (280, 117, '1994-09-03 00:00:00',
'AP', 115, 'F', NULL);
# 8 records
#
# Table structure for table 'observation'
#
DROP TABLE IF EXISTS `observation`;
CREATE TABLE `observation` (
`Admission_id` INTEGER NOT NULL,
`Observ_date` DATETIME NOT NULL,
`Observ_time` VARCHAR(4) NOT NULL,
`Observ_type` VARCHAR(10) NOT NULL,
`Observ_value` INTEGER,
`Staff_id` INTEGER,
PRIMARY KEY (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'observation'
#
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (205, '1992-02-02 00:00:00', '1500', 'Temp', 38, 114);
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (274, '1994-09-04 00:00:00', '0601', 'Temp', 39, 116);
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (275, '1994-09-01 00:00:00', '1400', 'Pulse', 74, 115);
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (275, '1994-09-01 00:00:00', '1400', 'Temp', 38, 115);
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (275, '1994-09-03 00:00:00', '1800', 'Temp', 40, 116);
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (275, '1994-09-03 00:00:00', '2200', 'Temp', 40, 116);
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (275, '1994-09-04 00:00:00', '0610', 'Pulse', 82, 116);
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (275, '1994-09-04 00:00:00', '0610', 'Temp', 38, 116);
INSERT INTO `observation` (`Admission_id`, `Observ_date`,
`Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`)
VALUES (277, '1994-09-04 00:00:00', '0600', 'Temp', 39, 115);
# 9 records
#
# Table structure for table 'operation'
#
DROP TABLE IF EXISTS `operation`;
CREATE TABLE `operation` (
`Operation_id` INTEGER NOT NULL,
`Actual_op` VARCHAR(4),
`Admission_id` INTEGER,
`Op_date` DATETIME,
`Surgeon` INTEGER,
`Anaesthetist` INTEGER,
PRIMARY KEY (`Operation_id`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'operation'
#
INSERT INTO `operation` (`Operation_id`, `Actual_op`,
`Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES
(317, 'HB', 205, '1992-02-04 00:00:00', 110, 111);
INSERT INTO `operation` (`Operation_id`, `Actual_op`,
`Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES
(355, 'LA', 276, '1994-08-25 00:00:00', 103, 111);
INSERT INTO `operation` (`Operation_id`, `Actual_op`,
`Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES
(360, 'AP', 277, '1994-09-02 00:00:00', 103, 111);
INSERT INTO `operation` (`Operation_id`, `Actual_op`,
`Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES
(361, 'AP', 274, '1994-09-02 00:00:00', 103, 111);
INSERT INTO `operation` (`Operation_id`, `Actual_op`,
`Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES
(362, 'HT', 275, '1994-09-03 00:00:00', 110, 112);
INSERT INTO `operation` (`Operation_id`, `Actual_op`,
`Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES
(363, 'AP', 276, '1994-09-03 00:00:00', 103, 111);
# 6 records
#
# Table structure for table 'operation_type'
#
DROP TABLE IF EXISTS `operation_type`;
CREATE TABLE `operation_type` (
`Op_code` VARCHAR(4) NOT NULL,
`Operation_name` VARCHAR(16),
`Theatre_fee` DECIMAL(19,4),
`Days_in` INTEGER,
PRIMARY KEY (`Op_code`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'operation_type'
#
INSERT INTO `operation_type` (`Op_code`, `Operation_name`,
`Theatre_fee`, `Days_in`) VALUES ('AP', 'Appendicectomy',
500, 5);
INSERT INTO `operation_type` (`Op_code`, `Operation_name`,
`Theatre_fee`, `Days_in`) VALUES ('HB', 'Heart Bypass', 2000,
14);
INSERT INTO `operation_type` (`Op_code`, `Operation_name`,
`Theatre_fee`, `Days_in`) VALUES ('HT', 'Heart Transplant',
5000, 30);
INSERT INTO `operation_type` (`Op_code`, `Operation_name`,
`Theatre_fee`, `Days_in`) VALUES ('HY', 'Hysterectomy', 800,
7);
INSERT INTO `operation_type` (`Op_code`, `Operation_name`,
`Theatre_fee`, `Days_in`) VALUES ('LA', 'Leg Amputation',
1500, 10);
INSERT INTO `operation_type` (`Op_code`, `Operation_name`,
`Theatre_fee`, `Days_in`) VALUES ('TS', 'Tonsilectomy', 700,
7);
# 6 records
#
# Table structure for table 'person'
#
DROP TABLE IF EXISTS `person`;
CREATE TABLE `person` (
`Person_id` INTEGER NOT NULL,
`Surname` VARCHAR(12),
`First_name` VARCHAR(7),
`Sex` VARCHAR(1),
`Birth_date` DATETIME,
`Street` VARCHAR(16),
`Town` VARCHAR(9),
`Postcode` INTEGER,
`Next_of_kin` INTEGER,
PRIMARY KEY (`Person_id`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'person'
#
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (101, 'Black', 'Barry', 'M', '1959-12-31
00:00:00', '11 High St.', 'Cooma', 2630, 102);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (102, 'Black', 'Mary', 'F', '1963-01-01
00:00:00', '11 High St.', 'Cooma', 2630, 101);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (103, 'Strathclyde', 'Albert', 'M',
'1955-05-05 00:00:00', '3 The Mews', 'Hawthorn', 4171, 104);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (104, 'Strathclyde', 'Alice', 'F', '1955-
07-07 00:00:00', '3 The Mews', 'Hawthorn', 4171, 103);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (105, 'Green', 'Gill', 'F', '1966-06-06
00:00:00', '124 Main St.', 'Young', 2594, 106);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (106, 'Green', 'Graham', 'M', '1967-04-
04 00:00:00', '124 Main St.', 'Young', 2594, 105);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (107, 'Gray', 'Lesley', 'F', '1972-02-02
00:00:00', '130 Main St.', 'Young', 2594, 109);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (109, 'Gray', 'John', 'M', '1972-04-04
00:00:00', '130 Main St.', 'Young', 2594, 107);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (110, 'Samuelson', 'Thomas', 'M',
'1964-01-01 00:00:00', '17 The Mews', 'Hawthorn', 4171,
NULL);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (111, 'Abrahams', 'Mary', 'F', '1967-
05-05 00:00:00', '21 The Esplanade', 'Ivanhoe', 2878, NULL);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (112, 'Aumann', 'Monica', 'F', '1955-
05-05 00:00:00', '29 The Esplanade', 'Ivanhoe', 2878, NULL);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (113, 'Brown', 'Melissa', 'F', '1984-08-
08 00:00:00', '11 East St.', 'Cooma', 2630, NULL);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (114, 'Napier', 'Mary', 'F', '1971-01-01
00:00:00', '163 New Rd.', 'Henty', 2658, NULL);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (115, 'Nelson', 'Nigel', 'M', '1972-02-
02 00:00:00', '165 Young Rd.', 'Temora', 2666, NULL);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (116, 'Newman', 'Olive', 'F', '1973-03-
03 00:00:00', '21 Olympic Way', 'Henty', 2658, NULL);
INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
`Sex`, `Birth_date`, `Street`, `Town`, `Postcode`,
`Next_of_kin`) VALUES (117, 'Gray', 'Lesley', 'M', '1989-12-31
00:00:00', '130 Main St.', 'Young', 2594, 107);
# 16 records
#
# Table structure for table 'staff'
#
DROP TABLE IF EXISTS `staff`;
CREATE TABLE `staff` (
`Person_id` INTEGER NOT NULL,
`Start_date` DATETIME,
`Staff_type` VARCHAR(15),
PRIMARY KEY (`Person_id`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'staff'
#
INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`)
VALUES (103, '1980-01-01 00:00:00', 'Surgeon');
INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`)
VALUES (110, '1985-05-05 00:00:00', 'Surgeon');
INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`)
VALUES (111, '1990-01-01 00:00:00', 'Anaesthetist');
INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`)
VALUES (112, '1990-03-03 00:00:00', 'Anaesthetist');
INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`)
VALUES (114, '1991-01-01 00:00:00', 'Nurse');
INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`)
VALUES (115, '1992-02-02 00:00:00', 'Nurse');
INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`)
VALUES (116, '1993-03-03 00:00:00', 'Nurse');
# 7 records
#
# Table structure for table 'ward'
#
DROP TABLE IF EXISTS `ward`;
CREATE TABLE `ward` (
`Ward_code` VARCHAR(3) NOT NULL,
`Ward_name` VARCHAR(10),
`Bed_count` INTEGER,
`Opened_date` DATETIME,
`Last_painted_date` DATETIME,
`Daily_charge` DECIMAL(19,4),
PRIMARY KEY (`Ward_code`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'ward'
#
INSERT INTO `ward` (`Ward_code`, `Ward_name`,
`Bed_count`, `Opened_date`, `Last_painted_date`,
`Daily_charge`) VALUES ('F', 'Flemming', 15, '1990-11-15
00:00:00', NULL, 230);
INSERT INTO `ward` (`Ward_code`, `Ward_name`,
`Bed_count`, `Opened_date`, `Last_painted_date`,
`Daily_charge`) VALUES ('L', 'Lister', 8, '1900-12-18
00:00:00', '1984-12-20 00:00:00', 200);
INSERT INTO `ward` (`Ward_code`, `Ward_name`,
`Bed_count`, `Opened_date`, `Last_painted_date`,
`Daily_charge`) VALUES ('P', 'Pasteur', 10, '1968-12-12
00:00:00', '1986-12-12 00:00:00', 150);
# 3 records

More Related Content

Similar to # Dump File## Database is ported from MS Access#---------.docx

foreach (DataRow dataRow in dataTable.Rows) .docx
            foreach (DataRow dataRow in dataTable.Rows)        .docx            foreach (DataRow dataRow in dataTable.Rows)        .docx
foreach (DataRow dataRow in dataTable.Rows) .docxjoyjonna282
 
SQL SQL 2) Add 25 CUSTOMERSs so that you now have 50 total..docx
SQL SQL 2) Add 25 CUSTOMERSs so that you now have 50 total..docxSQL SQL 2) Add 25 CUSTOMERSs so that you now have 50 total..docx
SQL SQL 2) Add 25 CUSTOMERSs so that you now have 50 total..docxrafbolet0
 
SQL FILE FROM MOODLEUSE [master]GO Object Databa.pdf
SQL FILE FROM MOODLEUSE [master]GO Object Databa.pdfSQL FILE FROM MOODLEUSE [master]GO Object Databa.pdf
SQL FILE FROM MOODLEUSE [master]GO Object Databa.pdfarrowit1
 
Use this script for the assignment.Please follow instructions as t.docx
Use this script for the assignment.Please follow instructions as t.docxUse this script for the assignment.Please follow instructions as t.docx
Use this script for the assignment.Please follow instructions as t.docxgarnerangelika
 
Sentencias básicas en oracle
Sentencias básicas en oracleSentencias básicas en oracle
Sentencias básicas en oracleNelson Salinas
 
ZEN-ass2-schm1509.sql---- ITECH1006 Assignment 2 Zen Chirop.docx
ZEN-ass2-schm1509.sql---- ITECH1006 Assignment 2 Zen Chirop.docxZEN-ass2-schm1509.sql---- ITECH1006 Assignment 2 Zen Chirop.docx
ZEN-ass2-schm1509.sql---- ITECH1006 Assignment 2 Zen Chirop.docxdanielfoster65629
 

Similar to # Dump File## Database is ported from MS Access#---------.docx (8)

Cine
CineCine
Cine
 
foreach (DataRow dataRow in dataTable.Rows) .docx
            foreach (DataRow dataRow in dataTable.Rows)        .docx            foreach (DataRow dataRow in dataTable.Rows)        .docx
foreach (DataRow dataRow in dataTable.Rows) .docx
 
SQL SQL 2) Add 25 CUSTOMERSs so that you now have 50 total..docx
SQL SQL 2) Add 25 CUSTOMERSs so that you now have 50 total..docxSQL SQL 2) Add 25 CUSTOMERSs so that you now have 50 total..docx
SQL SQL 2) Add 25 CUSTOMERSs so that you now have 50 total..docx
 
Employ leave dtb
Employ leave dtbEmploy leave dtb
Employ leave dtb
 
SQL FILE FROM MOODLEUSE [master]GO Object Databa.pdf
SQL FILE FROM MOODLEUSE [master]GO Object Databa.pdfSQL FILE FROM MOODLEUSE [master]GO Object Databa.pdf
SQL FILE FROM MOODLEUSE [master]GO Object Databa.pdf
 
Use this script for the assignment.Please follow instructions as t.docx
Use this script for the assignment.Please follow instructions as t.docxUse this script for the assignment.Please follow instructions as t.docx
Use this script for the assignment.Please follow instructions as t.docx
 
Sentencias básicas en oracle
Sentencias básicas en oracleSentencias básicas en oracle
Sentencias básicas en oracle
 
ZEN-ass2-schm1509.sql---- ITECH1006 Assignment 2 Zen Chirop.docx
ZEN-ass2-schm1509.sql---- ITECH1006 Assignment 2 Zen Chirop.docxZEN-ass2-schm1509.sql---- ITECH1006 Assignment 2 Zen Chirop.docx
ZEN-ass2-schm1509.sql---- ITECH1006 Assignment 2 Zen Chirop.docx
 

More from katherncarlyle

After reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docxAfter reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docxkatherncarlyle
 
After reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docxAfter reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docxkatherncarlyle
 
After reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docxAfter reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docxkatherncarlyle
 
After reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docxAfter reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docxkatherncarlyle
 
After having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docxAfter having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docxkatherncarlyle
 
Advisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docxAdvisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docxkatherncarlyle
 
After completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docxAfter completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docxkatherncarlyle
 
Advocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docxAdvocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docxkatherncarlyle
 
After completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docxAfter completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docxkatherncarlyle
 
African Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docxAfrican Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docxkatherncarlyle
 
Advances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docxAdvances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docxkatherncarlyle
 
Advocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docxAdvocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docxkatherncarlyle
 
Advocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docxAdvocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docxkatherncarlyle
 
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docxAdvanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docxkatherncarlyle
 
After completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docxAfter completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docxkatherncarlyle
 
Adopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docxAdopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docxkatherncarlyle
 
Addisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docxAddisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docxkatherncarlyle
 
AdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docxAdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docxkatherncarlyle
 
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docxAdopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docxkatherncarlyle
 
Adolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docxAdolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docxkatherncarlyle
 

More from katherncarlyle (20)

After reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docxAfter reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docx
 
After reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docxAfter reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docx
 
After reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docxAfter reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docx
 
After reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docxAfter reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docx
 
After having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docxAfter having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docx
 
Advisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docxAdvisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docx
 
After completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docxAfter completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docx
 
Advocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docxAdvocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docx
 
After completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docxAfter completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docx
 
African Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docxAfrican Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docx
 
Advances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docxAdvances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docx
 
Advocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docxAdvocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docx
 
Advocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docxAdvocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docx
 
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docxAdvanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
 
After completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docxAfter completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docx
 
Adopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docxAdopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docx
 
Addisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docxAddisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docx
 
AdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docxAdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docx
 
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docxAdopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
 
Adolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docxAdolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docx
 

Recently uploaded

Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Recently uploaded (20)

Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

# Dump File## Database is ported from MS Access#---------.docx

  • 1. # Dump File # # Database is ported from MS Access #-------------------------------------------------------- # Program Version 3.0.148 CREATE DATABASE IF NOT EXISTS `hospital_2010`; USE `hospital_2010`; # # Table structure for table 'admission' # DROP TABLE IF EXISTS `admission`; CREATE TABLE `admission` ( `Admission_id` INTEGER NOT NULL,
  • 2. `Patient_id` INTEGER, `Admission_date` DATETIME, `Expected_op` VARCHAR(4), `Admitted_by` INTEGER, `Ward_code` VARCHAR(3), `Discharge_date` DATETIME, PRIMARY KEY (`Admission_id`) ) ENGINE=myisam DEFAULT CHARSET=utf8; SET autocommit=1; # # Dumping data for table 'admission' # INSERT INTO `admission` (`Admission_id`, `Patient_id`, `Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`, `Discharge_date`) VALUES (205, 101, '1992-02-02 00:00:00', 'HB', 114, 'P', '1992-02-16 00:00:00'); INSERT INTO `admission` (`Admission_id`, `Patient_id`,
  • 3. `Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`, `Discharge_date`) VALUES (274, 109, '1994-09-01 00:00:00', 'AP', 114, 'P', '1994-09-09 00:00:00'); INSERT INTO `admission` (`Admission_id`, `Patient_id`, `Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`, `Discharge_date`) VALUES (275, 101, '1994-09-01 00:00:00', 'HB', 115, 'L', NULL); INSERT INTO `admission` (`Admission_id`, `Patient_id`, `Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`, `Discharge_date`) VALUES (276, 106, '1994-08-24 00:00:00', 'LA', 114, 'P', '1994-09-05 00:00:00'); INSERT INTO `admission` (`Admission_id`, `Patient_id`, `Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`, `Discharge_date`) VALUES (277, 114, '1994-09-02 00:00:00', 'AP', 115, 'P', '1994-09-10 00:00:00'); INSERT INTO `admission` (`Admission_id`, `Patient_id`, `Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`, `Discharge_date`) VALUES (278, 105, '1995-01-01 00:00:00', 'HB', NULL, NULL, NULL); INSERT INTO `admission` (`Admission_id`, `Patient_id`, `Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`, `Discharge_date`) VALUES (279, 103, '1994-09-03 00:00:00', 'TS', 115, 'F', '1994-09-06 00:00:00'); INSERT INTO `admission` (`Admission_id`, `Patient_id`, `Admission_date`, `Expected_op`, `Admitted_by`, `Ward_code`, `Discharge_date`) VALUES (280, 117, '1994-09-03 00:00:00', 'AP', 115, 'F', NULL); # 8 records
  • 4. # # Table structure for table 'observation' # DROP TABLE IF EXISTS `observation`; CREATE TABLE `observation` ( `Admission_id` INTEGER NOT NULL, `Observ_date` DATETIME NOT NULL, `Observ_time` VARCHAR(4) NOT NULL, `Observ_type` VARCHAR(10) NOT NULL, `Observ_value` INTEGER, `Staff_id` INTEGER, PRIMARY KEY (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`) ) ENGINE=myisam DEFAULT CHARSET=utf8; SET autocommit=1;
  • 5. # # Dumping data for table 'observation' # INSERT INTO `observation` (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (205, '1992-02-02 00:00:00', '1500', 'Temp', 38, 114); INSERT INTO `observation` (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (274, '1994-09-04 00:00:00', '0601', 'Temp', 39, 116); INSERT INTO `observation` (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (275, '1994-09-01 00:00:00', '1400', 'Pulse', 74, 115); INSERT INTO `observation` (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (275, '1994-09-01 00:00:00', '1400', 'Temp', 38, 115); INSERT INTO `observation` (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (275, '1994-09-03 00:00:00', '1800', 'Temp', 40, 116); INSERT INTO `observation` (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (275, '1994-09-03 00:00:00', '2200', 'Temp', 40, 116); INSERT INTO `observation` (`Admission_id`, `Observ_date`,
  • 6. `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (275, '1994-09-04 00:00:00', '0610', 'Pulse', 82, 116); INSERT INTO `observation` (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (275, '1994-09-04 00:00:00', '0610', 'Temp', 38, 116); INSERT INTO `observation` (`Admission_id`, `Observ_date`, `Observ_time`, `Observ_type`, `Observ_value`, `Staff_id`) VALUES (277, '1994-09-04 00:00:00', '0600', 'Temp', 39, 115); # 9 records # # Table structure for table 'operation' # DROP TABLE IF EXISTS `operation`; CREATE TABLE `operation` ( `Operation_id` INTEGER NOT NULL, `Actual_op` VARCHAR(4), `Admission_id` INTEGER, `Op_date` DATETIME,
  • 7. `Surgeon` INTEGER, `Anaesthetist` INTEGER, PRIMARY KEY (`Operation_id`) ) ENGINE=myisam DEFAULT CHARSET=utf8; SET autocommit=1; # # Dumping data for table 'operation' # INSERT INTO `operation` (`Operation_id`, `Actual_op`, `Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES (317, 'HB', 205, '1992-02-04 00:00:00', 110, 111); INSERT INTO `operation` (`Operation_id`, `Actual_op`, `Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES (355, 'LA', 276, '1994-08-25 00:00:00', 103, 111); INSERT INTO `operation` (`Operation_id`, `Actual_op`, `Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES (360, 'AP', 277, '1994-09-02 00:00:00', 103, 111); INSERT INTO `operation` (`Operation_id`, `Actual_op`,
  • 8. `Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES (361, 'AP', 274, '1994-09-02 00:00:00', 103, 111); INSERT INTO `operation` (`Operation_id`, `Actual_op`, `Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES (362, 'HT', 275, '1994-09-03 00:00:00', 110, 112); INSERT INTO `operation` (`Operation_id`, `Actual_op`, `Admission_id`, `Op_date`, `Surgeon`, `Anaesthetist`) VALUES (363, 'AP', 276, '1994-09-03 00:00:00', 103, 111); # 6 records # # Table structure for table 'operation_type' # DROP TABLE IF EXISTS `operation_type`; CREATE TABLE `operation_type` ( `Op_code` VARCHAR(4) NOT NULL, `Operation_name` VARCHAR(16), `Theatre_fee` DECIMAL(19,4), `Days_in` INTEGER,
  • 9. PRIMARY KEY (`Op_code`) ) ENGINE=myisam DEFAULT CHARSET=utf8; SET autocommit=1; # # Dumping data for table 'operation_type' # INSERT INTO `operation_type` (`Op_code`, `Operation_name`, `Theatre_fee`, `Days_in`) VALUES ('AP', 'Appendicectomy', 500, 5); INSERT INTO `operation_type` (`Op_code`, `Operation_name`, `Theatre_fee`, `Days_in`) VALUES ('HB', 'Heart Bypass', 2000, 14); INSERT INTO `operation_type` (`Op_code`, `Operation_name`, `Theatre_fee`, `Days_in`) VALUES ('HT', 'Heart Transplant', 5000, 30); INSERT INTO `operation_type` (`Op_code`, `Operation_name`, `Theatre_fee`, `Days_in`) VALUES ('HY', 'Hysterectomy', 800, 7); INSERT INTO `operation_type` (`Op_code`, `Operation_name`,
  • 10. `Theatre_fee`, `Days_in`) VALUES ('LA', 'Leg Amputation', 1500, 10); INSERT INTO `operation_type` (`Op_code`, `Operation_name`, `Theatre_fee`, `Days_in`) VALUES ('TS', 'Tonsilectomy', 700, 7); # 6 records # # Table structure for table 'person' # DROP TABLE IF EXISTS `person`; CREATE TABLE `person` ( `Person_id` INTEGER NOT NULL, `Surname` VARCHAR(12), `First_name` VARCHAR(7), `Sex` VARCHAR(1), `Birth_date` DATETIME, `Street` VARCHAR(16),
  • 11. `Town` VARCHAR(9), `Postcode` INTEGER, `Next_of_kin` INTEGER, PRIMARY KEY (`Person_id`) ) ENGINE=myisam DEFAULT CHARSET=utf8; SET autocommit=1; # # Dumping data for table 'person' # INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (101, 'Black', 'Barry', 'M', '1959-12-31 00:00:00', '11 High St.', 'Cooma', 2630, 102); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (102, 'Black', 'Mary', 'F', '1963-01-01 00:00:00', '11 High St.', 'Cooma', 2630, 101); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
  • 12. `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (103, 'Strathclyde', 'Albert', 'M', '1955-05-05 00:00:00', '3 The Mews', 'Hawthorn', 4171, 104); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (104, 'Strathclyde', 'Alice', 'F', '1955- 07-07 00:00:00', '3 The Mews', 'Hawthorn', 4171, 103); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (105, 'Green', 'Gill', 'F', '1966-06-06 00:00:00', '124 Main St.', 'Young', 2594, 106); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (106, 'Green', 'Graham', 'M', '1967-04- 04 00:00:00', '124 Main St.', 'Young', 2594, 105); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (107, 'Gray', 'Lesley', 'F', '1972-02-02 00:00:00', '130 Main St.', 'Young', 2594, 109); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (109, 'Gray', 'John', 'M', '1972-04-04 00:00:00', '130 Main St.', 'Young', 2594, 107); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (110, 'Samuelson', 'Thomas', 'M', '1964-01-01 00:00:00', '17 The Mews', 'Hawthorn', 4171, NULL); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`,
  • 13. `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (111, 'Abrahams', 'Mary', 'F', '1967- 05-05 00:00:00', '21 The Esplanade', 'Ivanhoe', 2878, NULL); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (112, 'Aumann', 'Monica', 'F', '1955- 05-05 00:00:00', '29 The Esplanade', 'Ivanhoe', 2878, NULL); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (113, 'Brown', 'Melissa', 'F', '1984-08- 08 00:00:00', '11 East St.', 'Cooma', 2630, NULL); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (114, 'Napier', 'Mary', 'F', '1971-01-01 00:00:00', '163 New Rd.', 'Henty', 2658, NULL); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (115, 'Nelson', 'Nigel', 'M', '1972-02- 02 00:00:00', '165 Young Rd.', 'Temora', 2666, NULL); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (116, 'Newman', 'Olive', 'F', '1973-03- 03 00:00:00', '21 Olympic Way', 'Henty', 2658, NULL); INSERT INTO `person` (`Person_id`, `Surname`, `First_name`, `Sex`, `Birth_date`, `Street`, `Town`, `Postcode`, `Next_of_kin`) VALUES (117, 'Gray', 'Lesley', 'M', '1989-12-31 00:00:00', '130 Main St.', 'Young', 2594, 107); # 16 records
  • 14. # # Table structure for table 'staff' # DROP TABLE IF EXISTS `staff`; CREATE TABLE `staff` ( `Person_id` INTEGER NOT NULL, `Start_date` DATETIME, `Staff_type` VARCHAR(15), PRIMARY KEY (`Person_id`) ) ENGINE=myisam DEFAULT CHARSET=utf8; SET autocommit=1; # # Dumping data for table 'staff'
  • 15. # INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`) VALUES (103, '1980-01-01 00:00:00', 'Surgeon'); INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`) VALUES (110, '1985-05-05 00:00:00', 'Surgeon'); INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`) VALUES (111, '1990-01-01 00:00:00', 'Anaesthetist'); INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`) VALUES (112, '1990-03-03 00:00:00', 'Anaesthetist'); INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`) VALUES (114, '1991-01-01 00:00:00', 'Nurse'); INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`) VALUES (115, '1992-02-02 00:00:00', 'Nurse'); INSERT INTO `staff` (`Person_id`, `Start_date`, `Staff_type`) VALUES (116, '1993-03-03 00:00:00', 'Nurse'); # 7 records # # Table structure for table 'ward' #
  • 16. DROP TABLE IF EXISTS `ward`; CREATE TABLE `ward` ( `Ward_code` VARCHAR(3) NOT NULL, `Ward_name` VARCHAR(10), `Bed_count` INTEGER, `Opened_date` DATETIME, `Last_painted_date` DATETIME, `Daily_charge` DECIMAL(19,4), PRIMARY KEY (`Ward_code`) ) ENGINE=myisam DEFAULT CHARSET=utf8; SET autocommit=1; # # Dumping data for table 'ward' #
  • 17. INSERT INTO `ward` (`Ward_code`, `Ward_name`, `Bed_count`, `Opened_date`, `Last_painted_date`, `Daily_charge`) VALUES ('F', 'Flemming', 15, '1990-11-15 00:00:00', NULL, 230); INSERT INTO `ward` (`Ward_code`, `Ward_name`, `Bed_count`, `Opened_date`, `Last_painted_date`, `Daily_charge`) VALUES ('L', 'Lister', 8, '1900-12-18 00:00:00', '1984-12-20 00:00:00', 200); INSERT INTO `ward` (`Ward_code`, `Ward_name`, `Bed_count`, `Opened_date`, `Last_painted_date`, `Daily_charge`) VALUES ('P', 'Pasteur', 10, '1968-12-12 00:00:00', '1986-12-12 00:00:00', 150); # 3 records