i have created on table Customer which have [ino] column as primary key and IDENTITY(100000 00,1). What i want is
how can i insert values for the table using INSERT INTO
Customers values(<values> ) query
Be cause it generates
"An explicit value for the identity column in table 'Customer' can only be specified when a column list is used and IDENTITY_INSERT is ON'
error"
i want query method only
how can i insert values for the table using INSERT INTO
Customers values(<values> ) query
Be cause it generates
"An explicit value for the identity column in table 'Customer' can only be specified when a column list is used and IDENTITY_INSERT is ON'
error"
i want query method only
Comment