Using Sql Server CE 4 I have created the follow table.
create table abc(id int identity(1,1) primary key)
If I try and insert a row to generate a new identity using the following:
insert into abc default values
I get an error stating there is an issue near the default word.
How can I do this using Sql Server CE 4 or is it not possible?