I have participated in several of the StackOverflow sites, and one of the things that I have noticed is that there is a real "bootstrap" problem in the beginning. There really needs to be a certain minimum number of active members with a minimum number of points before it really starts to work. In the interests of addressing this, (and unless the powers that be object) I will be posting challenge questions based on some of the older SqlServerCentral Questions Of The Day. The first answer which is correct will be marked as accepted (15 points). For the most part I will not be presenting the questions as multiple choice, as they originally were.
Identity Insert:
We have a table and it has just one column that the identity property of that column is set to ON, we need a query to insert some records in that, which of the following will work:
We have the following table:
CREATE TABLE TestID( ID int Identity(1,1))
What is the INSERT statement to insert records into this table?