JIRA JIRA API和二次开发 Current: H2 数据库怎么describe table H2 数据库怎么describe table 在开发插件的过程中经常需要查看AO的表结构和索引信息,H2DB怎么查看这些呢?可以用以下两个命令 # 查看表结构 show columns from <tableName>; # 查看索引信息 select * from information_schema.indexes where table_name = '<tableName>'; RUBY 注意: where table_name 需要加引号 ×