MayfieldGlobal

Everything from operating systems, programming to web development and more.

Jan
16

What is the SQL Server 2005 SQL syntax for dropping a column?

Posted under SQL Server 2005, T-SQL by x2ws

The following is the general syntax for deleting a column from a table:
ALTER TABLE table_name
DROP COLUMN column-name

Add A Comment