> is it possible in H2 to show the structure (maybe in SQL) of a given
> object, but without seeing or exporting the structure of all the DB
> (script nodata) ?
The 'standard' was is to use the information_schema tables.
> Or a dedicated command, like SHOW ... as over.
Actually this is supported, but not documented so far. I will add the
following documentation:
SHOW { SCHEMAS | TABLES [FROM schemaName] |
COLUMNS FROM tableName [FROM schemaName] }
Lists the schemas, tables, or the columns of a table.
Examples:
SHOW SCHEMAS;
SHOW TABLES;
SHOW COLUMN FROM TEST;
Regards,
Thomas