View Single Post
  #2 (permalink)  
Old 02-05-2008, 11:07 PM
Dimitar
 
Posts: n/a
Default ANY answer. Re: dropping a column from table

Hi,
You could try this:
Code:
alter table t drop column c1
SQL1992 specifies the 'column' keyword is optional, but since it does not work this way in the database engine you are using, you could try and specify it (the keyword) explictly.

Hope this helps,
Dimitar
Reply With Quote