Statement
interface Statement
Represents an intermediate stage in building a SQL SELECT query.
This interface is typically returned by the top-level select() function. It provides methods to either execute a simple query directly (e.g., SELECT DATETIME(1761301829)) or to specify the source table using the from method, which continues the query-building process.
Author
MOHAMMAD AZIM ANSARI
See also
Functions
Link copied to clipboard
Same as calling execute(null). Uses last opened connection.
Executes a simple SELECT query that does not require a FROM clause.
Link copied to clipboard
Specifies the primary table for the SELECT query.