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
- Android
- AOP
- kotlin
- 백준
- springdatajpa
- 그리디
- Servlet
- transaction
- Exception
- 김영한
- pointcut
- 스프링
- JPQL
- 알고리즘
- Spring Boot
- JDBC
- QueryDSL
- 인프런
- 스프링 핵심 기능
- Greedy
- java
- Proxy
- SpringBoot
- jpa
- http
- 자바
- db
- 스프링 핵심 원리
- Thymeleaf
- spring
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