0

Is it possible to do the following SQL query with CriteriaQuery (EclipseLink) ?

INSERT INTO my_table (SELECT columns FROM other_table)

Libert Piou Piou
  • 540
  • 5
  • 22

1 Answers1

-1

No. All possible modes of Criteria (SELECT, UPDATE, DELETE) are shown on this page http://www.datanucleus.org/products/accessplatform_4_0/jpa/jpql_criteria.html

Neil Stockton
  • 11,383
  • 3
  • 34
  • 29