List of all sequences in HsqlDB 1.8

How can I list all sequences in a particular schema in HsqlDB 1.8 ?

Note: HsqlDB 1.8 does NOT support information_schema tables introduced in 2.0

+6
source share
1 answer

The following works for me:

SELECT * FROM information_schema.system_sequences 
+8
source

Source: https://habr.com/ru/post/900992/


All Articles