[Oracle] Problem with creating a table

i started learning db in oracle 10g ex , in that i am trying to create a table with this following code …
CREATE TABLE MINE
(
ID INT(3) PRIMARY KEY,
NAME VARCHAR(10)
);
my error is ORA-00907: missing right parenthesis

INT(3) is a not valid data type in Oracle.

yeah thank you

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.