|
-
SQL> create table testaaa ( a number,
2 b number);
Table created.
SQL> alter table testaaa drop column b;
Table altered.
SQL> desc testaaa
Name Null? Type
----------------------------------------- -------- ----------------------------
A NUMBER
SQL> rollback;
Rollback complete.
SQL> desc testaaa
Name Null? Type
----------------------------------------- -------- ----------------------------
A NUMBER
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|