H2 DML Operations

From NovaOrdis Knowledge Base
Revision as of 17:58, 25 September 2017 by Ovidiu (talk | contribs) (→‎Internal)
Jump to navigation Jump to search

Internal

Query

SELECT * FROM <table-name> ORDER BY <column-name>;

Insert

INSERT INTO <table-name> VALUES(1, "Hello");

This insert command uses the table definition created as an example here.