write Command to insert data into this tables create table patients ( patient_id VARCHAR(255), `name` VARCHAR(255), `insurance` DECIMAL(15,2), `date_admitted` DATE, `date_checked_out` DATE, PRIMARY KEY(`patient_id`) ); create table doctor ( doctor_id VARCHAR(255), name VARCHAR(255), specialization VARCHAR(255), PRIMARY KEY (doctor_id) ); create table `test` ( `test_id` VARCHAR(255), `test_name` VARCHAR(255), `test_date` DATE, `test_time` TIME, `result` VARCHAR(255), PRIMARY KEY(`test_id`) ); create table doctor_patient ( patient_id VARCHAR(255), doctor_id VARCHAR(255), PRIMARY KEY(`patient_id`), FOREIGN KEY(`doctor_id`) REFERENCES doctor(`doctor_id`) ); create table test_log ( `test_log_id` varchar(255), `patient_id` VARCHAR(255), `test_id` VARCHAR(255), `doctor_id` VARCHAR(255), `comments` VARCHAR(255), PRIMARY KEY(`test_log_id`), FOREIGN KEY(`test_id`) REFERENCES `test`(`test_id`), FOREIGN KEY(`patient_id`) REFERENCES doctor_patient(`patient_id`), FOREIGN KEY(`doctor_id`) REFERENCES doctor(`doctor_id`) );
SQL
SQL stands for Structured Query Language, is a form of communication that uses queries structured in a specific format to store, manage & retrieve data from a relational database.
Queries
A query is a type of computer programming language that is used to retrieve data from a database. Databases are useful in a variety of ways. They enable the retrieval of records or parts of records, as well as the performance of various calculations prior to displaying the results. A search query is one type of query that many people perform several times per day. A search query is executed every time you use a search engine to find something. When you press the Enter key, the keywords are sent to the search engine, where they are processed by an algorithm that retrieves related results from the search index. Your query's results are displayed on a search engine results page, or SER.
write Command to insert data into this tables
create table patients (
patient_id VARCHAR(255),
`name` VARCHAR(255),
`insurance` DECIMAL(15,2),
`date_admitted` DATE,
`date_checked_out` DATE,
PRIMARY KEY(`patient_id`)
);
create table doctor (
doctor_id VARCHAR(255),
name VARCHAR(255),
specialization VARCHAR(255),
PRIMARY KEY (doctor_id)
);
create table `test` (
`test_id` VARCHAR(255),
`test_name` VARCHAR(255),
`test_date` DATE,
`test_time` TIME,
`result` VARCHAR(255),
PRIMARY KEY(`test_id`)
);
create table doctor_patient
(
patient_id VARCHAR(255),
doctor_id VARCHAR(255),
PRIMARY KEY(`patient_id`),
FOREIGN KEY(`doctor_id`) REFERENCES doctor(`doctor_id`)
);
create table test_log
(
`test_log_id` varchar(255),
`patient_id` VARCHAR(255),
`test_id` VARCHAR(255),
`doctor_id` VARCHAR(255),
`comments` VARCHAR(255),
PRIMARY KEY(`test_log_id`),
FOREIGN KEY(`test_id`) REFERENCES `test`(`test_id`),
FOREIGN KEY(`patient_id`) REFERENCES doctor_patient(`patient_id`),
FOREIGN KEY(`doctor_id`) REFERENCES doctor(`doctor_id`)
);
Step by step
Solved in 6 steps with 10 images