Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HyperSQL 支持不同的表类型(内存、缓存等)。如何获取现有表的类型?
SELECT HSQLDB_TYPE FROM INFORMATION_SCHEMA.SYSTEM_TABLES WHERE TABLE_NAME = '<TABLE NAME IN UPPERCASE>'
HSQL 将表名转换为大写,因此查询中的表名也必须为大写。