github JSQLParser/JSqlParser jsqlparser-0.9.1

9 years ago

Extensions Release 0.9.1

  • Simple support for EXECUTE.
EXECUTE myproc 'a', 2, 'b'
  • Improved support for select into clause.
SELECT * INTO mytable FROM mytable2
  • Improved support for insert table using with clause.
INSERT INTO mytable (mycolumn) WITH a AS (SELECT mycolumn FROM mytable) SELECT mycolumn FROM a
  • Support for limit 0 and limit null clause.
  • Window functions now allow simple expressions for partition by.
  • Support for create table as select syntax:
CREATE TABLE table1 as SELECT col1, col2 FROM table2
  • First simple support of postgresqls JSON syntax.
SELECT data->'images'->'thumbnail'->'url' AS thumb FROM instagram
  • Included support for returning for insert statements.
INSERT INTO mytable (mycolumn) VALUES ('1') RETURNING id
  • Included support for multitable update statements.
UPDATE table1, table2 SET table1.col2 = table2.col2, table2.col3 = 'UPDATED' WHERE table1.col1 = table2.col1

Don't miss a new JSqlParser release

NewReleases is sending notifications on new releases.