How to write pure SQL statements using JPQL

Source: Internet
Author: User

With JPQL, SQL statements need to be modified to resemble HQL statements. SQL queries the database, and JPQL queries for objects and properties , which are somewhat different in syntax. For some queries that cannot be written by JPQL, it is easier to write them out using native SQL

Here is an example of the differences in syntax:

JPQL Query

@PersistenceContext
protected Entitymanager em;

Public list<video> FindVideoList1 () {
String hql = "fromVideo ORDER by id desc";
Query query = em. CreateQuery (HQL);
list<video> result = Query.getresultlist ();
Em.clear ();
return result;
}

SQL query

Query data for the last 7 days

Public list<video> FindVideoList2 () {
list<video> result = (list<video>) em. Createnativequery
("select * from Db_video where Date_sub (Curdate (), Interval 6 day) <= the date (date) Order BY date desc", video.cl )
. Getresultlist ();
return result;
}

Original articles, welcome reprint, reproduced please indicate the source!

How to write pure SQL statements using JPQL

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.