-
Junior Member
script
hi guys,
i wanna change the type of a column i have in my table;
for example from int(4) to varchar(20).
any script to do that??
thanks in advance
-
Re: script
You need to alter the table for that.
-
Expert Member
Re: script
Use alter table.
SQL> CREATE TABLE TEST_DATA ( X NUMBER);
Table created.
SQL> ALTER TABLE TEST_DATA MODIFY (X VARCHAR2(10));
Table altered.
You may not decrease the size of a columns or change its data type , unless it contains no data (especially for numeric data)
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