Answers for "You can use DROP COLUMN to drop all columns in a table, leaving a table structure with no colu"

SQL
5

df drop column

df = df.drop(['B', 'C'], axis=1)
Posted by: Guest on June-02-2020
0

alter table drop column

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

Code answers related to "You can use DROP COLUMN to drop all columns in a table, leaving a table structure with no colu"

Code answers related to "SQL"

Browse Popular Code Answers by Language