How to delete column and row in table# Database - 数据库ak2003-03-21 08:031 楼How to delete column and row in table (oracle)?I am a new user. Thanks!
B*z2003-03-21 08:032 楼tryALTER TABLE tableName DROP COLUMN columnName【在 ak 的大作中提到】: How to delete column and row in table (oracle)?: I am a new user. Thanks!
s*d2003-03-21 08:033 楼u need to update the column to null, otherwise the database maybe wont let youdrop that column.【在 B**z 的大作中提到】: try: ALTER TABLE tableName DROP COLUMN columnName