Answers for "drop column syntax"

SQL
8

drop columnsql

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

drop column from dataframe

var = dataframe.drop(['col', 'col'], axis=1)
var.sum()
Posted by: Guest on August-12-2021
0

drop columns

>>> df.drop(index='cow', columns='small')
                big
lama    speed   45.0
        weight  200.0
        length  1.5
falcon  speed   320.0
        weight  1.0
        length  0.3
Posted by: Guest on December-29-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language