Snowflake SQL for SQL Server Users - Sequences: The good and the not so good
I’ve been working to convert our SQL Down Under sample databases like PopkornKraze across to Snowflake. One of the areas that I ran into real challenges with was sequences.
The good news
The syntax for creating and accessing them is basic enough.
CREATE SEQUENCE "SequenceName";
is enough. (Note the double-quotes are mine as I don’t want the name auto-wrapped to SEQUENCENAME).
And there are some of the same options that SQL Server has:
2020-01-10