What\'s the correct syntax of a JPA insert statement? This might sound like an easy question but I haven\'t been able to find an answer.
I know how to do it from Jav
There is no INSERT statement in JPA. You have to insert new entities using an EntityManager. The only statements allowed in JPA are SELECT, UPDATE and DELETE.