[wd_asp elements=’search’ ratio=’100%’ id=1]

Delete column with foreign key

14th August 2018

MySql

mysql codehaven category

If you have a stubborn phpmyadmin column that wont delete due to a foreign key then use this sql code below.

ALTER TABLE workers DROP FOREIGN KEY worker_fk0;
ALTER TABLE workers DROP COLUMN skillsid;