public interface UpdateStatement
Common marker interface for database update operations.
Specific update-related operations such as INSERT or UPDATE implement this interface to ensure a standard structure. It serves as a marker type for classes representing various types of update statements in a database.
Implementing classes include: - Insert: Represents an insert operation with a target table, columns, and rows. - Update: Represents an update operation with target table, column values, and conditions.
This interface is part of the update-related models for database operations.
-
Method Summary
-
Method Details
-
table
Table table()Get the target table for the update statement.- Returns:
- the target table of the update statement
-