Modify Hospital_Bill by adding an attribute consulting_physician and add foreign key constraint for that attribute. Use constraint name for foreign key constraint code example
Example: mysql change foreign key
ALTER TABLE Orders
ADD FOREIGN KEY (PersonID) REFERENCES Persons(PersonID);