JPQL stands for Java Persistence Query Language. Based on the EJB Query Language (EJB QL) first introduced in EJB 2.0, the Java Persistence Query Language (JPQL) is a portable query language designed to bind SQL syntax and simple query semantics together in the form of object-oriented expression language expressions. Queries written in this language are portable and can be compiled into SQL on all major database servers. Its features are similar to native SQL statements and are fully object-oriented, accessed through class names and attributes rather than table names and table attributes. To use JPQL, you need to modify the SQL statement to be similar to HQL statement. SQL queries the database, while JPQL queries objects and attributes, and the syntax is somewhat different. For some queries that cannot be written in JPQL, it is more convenient to write them in native SQL. Here is an example, note the difference in syntax: JPQL Query @PersistenceContext protected EntityManager em; public List<Video> findVideoList1() { String hql = "from Video order by id desc"; Query query = em.createQuery(hql); List<Video> result = query.getResultList(); em.clear(); return result; } SQL Query Query the 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) <= date(date) order by date desc", Video.class) .getResultList(); return result; } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: In-depth analysis of Linux NFS mechanism through cases
>>: Source code reveals why Vue2 this can directly obtain data and methods
<br />The author used to be a novice in web ...
<br />In general guestbooks, forums and othe...
In the previous article, we talked about MySQL tr...
Table of contents 1. Draw a circle 2. Circle move...
When making a homepage such as a login page, you ...
First, you can open Moments and observe several l...
The cause is that the process opens a number of f...
◆Add to favorites illustrate Click to add your we...
Table of contents How to create a Pod? kubectl to...
MySQL database basic syntax DDL Operations Create...
HTML Input Attributes The value attribute The val...
I am very happy to attend this episode of potato ...
NTP is a TCP/IP protocol for synchronizing time o...
Performance of union all in MySQL 5.6 Part 1:MySQ...
Events can specify the execution of SQL code once...