Uses of Class
com.github.tadukoo.database.mysql.syntax.statement.SQLSelectStatement
Package
Description
Contains classes for creating MySQL statements
-
Uses of SQLSelectStatement in com.github.tadukoo.database.mysql.syntax.statement
Modifier and TypeFieldDescriptionprivate final SQLSelectStatement
SQLCreateStatement.selectStmt
Theselect statement
to use to grab another tableprivate SQLSelectStatement
SQLCreateStatement.SQLCreateStatementBuilder.selectStmt
Theselect statement
to use to grab another tableprivate final SQLSelectStatement
SQLInsertStatement.selectStmt
Theselect statement
to use for values to insertprivate SQLSelectStatement
SQLInsertStatement.SQLInsertStatementBuilder.selectStmt
Theselect statement
to use for values to insertModifier and TypeMethodDescriptionSQLSelectStatement.Build.build()
Builds a newSQLSelectStatement
using the set parametersSQLSelectStatement.SQLSelectStatementBuilder.build()
Builds a newSQLSelectStatement
using the set parametersSQLCreateStatement.getSelectStmt()
SQLInsertStatement.getSelectStmt()
Modifier and TypeMethodDescriptionSQLCreateStatement.AsOrColumns.as
(SQLSelectStatement selectStmt) Create the table using another tableSQLCreateStatement.SQLCreateStatementBuilder.as
(SQLSelectStatement selectStmt) Create the table using another tableSQLInsertStatement.ColumnsAndValuesOrSelectStatement.selectStmt
(SQLSelectStatement selectStmt) SQLInsertStatement.SQLInsertStatementBuilder.selectStmt
(SQLSelectStatement selectStmt) ModifierConstructorDescriptionprivate
SQLCreateStatement
(SQLType type, boolean ifNotExists, String name, SQLSelectStatement selectStmt, List<ColumnDefinition> columns, List<ForeignKeyConstraint> foreignKeys) Constructs a newSQLCreateStatement
with the given parametersprivate
SQLInsertStatement
(TableRef table, List<ColumnRef> columns, List<Object> values, SQLSelectStatement selectStmt) Constructs a new SQLInsertStatement using the given parameters