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(namevarchar(20) NOT NULL,ageint(4) NOT NULL,gendervarchar(20) NOT NULL,idvarchar(20) NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=latin1
Patient’s information is collected and updated through forms.




