Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Alter table add question
In article <0rHm4.4465$oU2.902500_at_tw12.nn.bcandid.com>, mjames_at_jsifrs.com
says...
> I want to do this:
> alter table gifts add
> giftdiscod char(6) null,
> giftdiscnt number(16,2) default 0 not null;
You forgot the parenthesies (however you spell that word).
alter table gifts add
( giftdiscod char(6),
giftdiscnt number(16,2) default 0 not null);
HTH; Doug
--
![]() |
![]() |