Page 1 of 1

mysql column delete

Posted: Sat May 21, 2022 2:47 am
by mchd17
how do i delete a column in mysql?

cpanel, phpMyAdmin

Re: mysql column delete

Posted: Sat May 21, 2022 8:31 pm
by Asobig
In this link you will find the Mysql statement and some examples:
https://www.mysqltutorial.org/mysql-drop-column/

But it is like this:

Code: Select all

ALTER TABLE table_name
DROP COLUMN column_name;

Re: mysql column delete

Posted: Sat May 21, 2022 9:19 pm
by mchd17
thanks