I want to insert data in one table and one of my column Name is abc_data.(here dot)
.
I wrote
insert into tablename (abc_data. , data1)
values (@abc, @def);
and I get an error:
Error: Incorrect Syntax near ','
I am suspecting the error to be in abc_data.(here dot)
here in column name.