我想从hsql中的sequence container_counter中获取接下来的10个值。在informix DB中,可以按如下方式完成
Select container_counter.nextval from informix.systables limit 10;
它将重新获得1,2,3,4,5,6,7,8,9,10个值
无论如何都要从hsqldb中获取?
答案 0 :(得分:0)
使用HSQLDB
select next value for container_counter from information_scheme.tables limit 10