How to get list of sequence names in Postgres?
Today,I asked how to get the sequence name list in the postgresql,Thanks to DunnoHowToCode provides the answer for me.
Now,the same question I meet in sqlsever.I through
SELECT * FROM sys.SEQUENCES
to get it,but anything I can't get.I want to get the sequence name list by sql statement in sqlsever.How can I do it?

Sequencecreated inSQL SERVERSELECT name FROM sys.SEQUENCESwill return the names of all sequence objects created in your database.SELECT * FROM sys.SEQUENCES