Home > Net >  Officially confirm sequence function was added in SQL Server 2012
Officially confirm sequence function was added in SQL Server 2012

Time:08-16

I know that the sequence creation function was newly added in SQL Server 2012.

In fact, we also confirmed that sequence objects are not created in versions 2005 and 2008.

When I checked the release notes of SQL Server 2012, I did not see any phrases such as support for 'sequence creation function'.

Is there a place where I can check this information on the official website?

Must be an official document.

CodePudding user response:

Check this link, books online for sql server 2012: https://docs.microsoft.com/en-us/previous-versions/sql/sql-server-2012/cc645577(v=sql.110)#sequence-objects

  • Related