Answers for "remove from sql column"

SQL
2

how to delete columns in sql

ALTER TABLE tableName
DROP COLUMN columnName;
Posted by: Guest on June-25-2021
3

sql drop column

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

Code answers related to "remove from sql column"

Code answers related to "SQL"

Browse Popular Code Answers by Language