| |

How can I delete/edit columns in SQL 6.5?
Answer:
You cannot amend SQL 6.5 columns by using the ALTER TABLE statement as in
SQL Server 7.0/2000 you can.
You should create another table with the appropriate structure, copy data
from the old table into the new one, and delete the old table.
|
|