Here is my problem...
>CREATE TABLE int_test
>(
>number_one int(6)
>);
number_one int(6)
*
ERROR at line 3:
ORA-00907: missing right parenthesis
Always tells me I'm missing right parenthesis even though I've closed them all and I can't figure out why.
>CREATE TABLE int_test
>(
>number_one int(6)
>);
number_one int(6)
*
ERROR at line 3:
ORA-00907: missing right parenthesis
Always tells me I'm missing right parenthesis even though I've closed them all and I can't figure out why.
Comment