- All Known Subinterfaces:
UpdateStatement
Common abstraction for SQL operations in the database.
This sealed interface serves as the root of the hierarchy for database operation
models, specifically for SQL SELECT queries and update-related statements such
as INSERT, UPDATE, and DELETE.
Permitted subtypes:
Select: Encapsulates components required to construct a SQLSELECTquery, including target table, expressions, joins, conditions, and more.UpdateStatement: Serves as a marker type for classes representing update-related operations in a database (e.g.,INSERT,UPDATE,DELETEstatements).
-
Method Summary
-
Method Details
-
table
Table table()Get the target table for the operation.- Returns:
- the target table of the operation
-