You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a database for the students in mysql commandline using following Commands:
!. CREATE DATABASE PATIENTS_DB;
2. USE PATIENTS_DB;
3. CREATE TABLE patients ( MOBILE varchar(200) NOT NULL, NAME varchar(200) NOT NULL, DOB varchar(200) NOT NULL, HISTORY varchar(200) NOT NULL, MEDICINES varchar(200) NOT NULL, PRIMARY KEY (MOBILE) )