-
Notifications
You must be signed in to change notification settings - Fork 10
DELETE
Konstantin Triger edited this page Aug 10, 2019
·
3 revisions
Started in Fundamentals, we continue writing tutorial samples with FluentJPA.
Other basic clauses: SELECT, INSERT, UPDATE
FluentQuery query = FluentJPA.SQL((LinkTmp linkTmp,
Link link) -> {
DELETE().FROM(link).USING(linkTmp);
WHERE(link.getId() == linkTmp.getId());
});
Getting Started
- Introduction
- Setup
- Data Types
- Entities & Tuples
- Sub Queries
- JPA Integration
- Java Language Support
- Directives
- Library
- Returning Results
- JPA Repositories
Examples
Basic SQL DML Statements
Advanced SQL DML Statements
- Common Table Expressions (WITH Clause)
- Window Functions (OVER Clause)
- Aggregate Expressions
- MERGE
- Temporal Tables
Advanced Topics