How can I set Column name as 'call'? I tried:
create table Reports(
id int not null,
state int not null,
call varchar(255),
primary key(id)
);
call with brackets [call] does not work. How Can I do it?
How can I set Column name as 'call'? I tried:
create table Reports(
id int not null,
state int not null,
call varchar(255),
primary key(id)
);
call with brackets [call] does not work. How Can I do it?