Answers for "drop table column from table"

SQL
0

alter table drop column

ALTER TABLE "table_name" DROP COLUMN "column_name";
Posted by: Guest on August-16-2021
2

sql drop column

ALTER TABLE my_schema.my_table DROP COLUMN my_column;
Posted by: Guest on May-02-2021

Code answers related to "drop table column from table"

Code answers related to "SQL"

Browse Popular Code Answers by Language