Health check is the easiest way to provide doctors with up to date information about patient’s medical history. It consists of concise data on symptoms and prescribed medicines.
- create database - 'health'
- execute the following query:
CREATE TABLE
main
(name
varchar(20) NOT NULL,age
int(4) NOT NULL,gender
varchar(20) NOT NULL,id
varchar(20) NOT NULL, PRIMARY KEY (id
) ) ENGINE=InnoDB DEFAULT CHARSET=latin1
Patient’s information is collected and updated through forms.