create table sl_rep_winners(
slnum INT (12),
zone INT,
city nvarchar(200),
county nvarchar(200),
town nvarchar(200)
);
I get a "missing right parenthesis" error. What is the reason of error?
create table sl_rep_winners(
slnum INT (12),
zone INT,
city nvarchar(200),
county nvarchar(200),
town nvarchar(200)
);
I get a "missing right parenthesis" error. What is the reason of error?
If you are using Oracle:
create table sl_rep_winners
(
slnum number(12),
zone number(10),
city varchar2(200),
county varchar2(200),
town varchar2(200)
);
INTEGER is supported as an ANSI datatype but gets converted to the equivalent Oracle datatype which is number().
FYI: nvarchar & varchar2