#Mysql server Sequence

Is there any way to trigger db sequence from expression rule , My requirement is like I will pass sequence name and the rule should return
next value of sequence , am using sql server.
My db script is:
 CREATE SEQUENCE [dbo].[testSequence2]
 AS [bigint]
 START WITH 5
 INCREMENT BY 2
 MINVALUE -9223372036854775808
 MAXVALUE 9223372036854775807
 CACHE
GO

  Discussion posts and replies are publicly visible

Parents Reply Children