SQL: set existing column as Primary Key in MySQL
ALTER TABLE your_table
ADD PRIMARY KEY (Drugid);
Either run in SQL:
ALTER TABLE tableName
ADD PRIMARY KEY (id) ---or Drugid, whichever you want it to be PK
or use the PHPMyAdmin interface (Table Structure)