Jan
16
16
What is the SQL Server 2005 SQL syntax for dropping a column?
Posted under SQL Server 2005, T-SQL by x2wsThe following is the general syntax for deleting a column from a table:
ALTER TABLE table_name
DROP COLUMN column-name
The following is the general syntax for deleting a column from a table:
ALTER TABLE table_name
DROP COLUMN column-name
Add A Comment