Reputation: 11
SELECT nextval('AWARD_ID')
I am getting nextval
as not built in function name in MS SQL Server. Kindly give any alternative if there is any.
Upvotes: 0
Views: 163
Reputation: 1319
Do you mean something like IDENT_CURRENT():
select IDENT_CURRENT('FOO') + IDENT_INCR('FOO')
Upvotes: -1