I need to insert a row into table "A". I was instructed to Select scope_identity() to create the ID for the new row in table "A". So I ran the following statement:
SELECT SCOPE_IDENTITY() from A
This statement returned a NULL value for each row. How do you use scope_identity to create an ID?
Thank you in advance for your assistance!
Ingrid
SELECT SCOPE_IDENTITY() from A
This statement returned a NULL value for each row. How do you use scope_identity to create an ID?
Thank you in advance for your assistance!
Ingrid