In postgres, we can add a new incremental column like:
ALTER TABLE <table_name>
ADD IF NOT EXISTS <column_name> SERIAL;
Which creates new column in the table with serial numbers. In snowflake when I tried the same command, it's throwing an error
SQL compilation error: Unsupported data type 'SERIAL'.
How can the same behavior be achieved in Snowflake?