How to remove column from the SQL Server table?
Answer 1, Authority 100%
alter table
table_name
dropcolumn_name
Does not roll? …
Not enough words “column”, the query should look like this:
alter table 'table_name' drop column 'column_name'
Answer 2, AUTHORITY 77%
alter table `table_name` Drop Column` COLUMN_NAME`
does not roll? …
UPD: Recovery Call about the keyword column
Answer 3, Authority 31%
mysql_query ("alter table_Table Drop Column name_stolbets");