Answers for "drop columns from table"

SQL
8

drop columnsql

ALTER TABLE table_name
DROP COLUMN column_name
Posted by: Guest on December-23-2020
3

drop column dataframe

df.drop(columns=['Unnamed: 0'])
Posted by: Guest on April-30-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language