Answers for "delete a column"

SQL
2

remove column from dataframe

df.drop('column_name', axis=1, inplace=True)
Posted by: Guest on June-02-2020
19

alter table delete column

ALTER TABLE "table_name" DROP "column_name";
Posted by: Guest on February-05-2020
0

remove name of a column

M
      a b c
1[1,] 1 4 7
2[2,] 2 5 8
3[3,] 3 6 9

row.names(M)<- NULL ; colnames(M)<- NULL
M

     [,1] [,2] [,3]
[1,]    1    4    7
[2,]    2    5    8
[3,]    3    6    9
Posted by: Guest on May-25-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language