Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 알고리즘
- pointcut
- db
- java
- jpa
- 그리디
- QueryDSL
- transaction
- 스프링
- Greedy
- Spring Boot
- 스프링 핵심 기능
- Servlet
- JDBC
- springdatajpa
- AOP
- Exception
- kotlin
- 인프런
- 자바
- Thymeleaf
- http
- 스프링 핵심 원리
- JPQL
- SpringBoot
- spring
- 백준
- 김영한
- Proxy
- Android
Archives
- Today
- Total
목록쿼리 언어 (1)
개발자되기 프로젝트
JPQL 기본 문법과 기능
1. JPQL JPQL은 객체지향 쿼리 언어이다. 따라서 테이블을 대상으로 쿼리하는 것이 아니라 엔티티 객체를 대상으로 쿼리한다. JPQL은 SQL을 추상화해서 특정데이터베이스 SQL에 의존하지 않는다. JPQL은 결국 SQL로 변환된다. . 2. 객체 모델 3.DB 모델 4. JPQL 문법 QL 문법 select_문 :: = select_절 from_절 [where_절] [groupby_절] [having_절] [orderby_절] update_문 :: = update_절 [where_절] delete_문 :: = delete_절 [where_절] select m from Member as m where m.age > 18 엔티티와 속성은 대소문자 구분 가능(Member, age) JPQL 키워드는 대..
인프런/[인프런] 자바ORM 표준 JPA 프로그래밍
2021. 8. 15. 00:48