Uses of Class
com.github.tadukoo.database.mysql.syntax.statement.SQLSelectStatement
Packages that use SQLSelectStatement
Package
Description
Contains classes for creating MySQL statements
- 
Uses of SQLSelectStatement in com.github.tadukoo.database.mysql.syntax.statement
Fields in com.github.tadukoo.database.mysql.syntax.statement declared as SQLSelectStatementModifier and TypeFieldDescriptionprivate final SQLSelectStatementSQLCreateStatement.selectStmtTheselect statementto use to grab another tableprivate SQLSelectStatementSQLCreateStatement.SQLCreateStatementBuilder.selectStmtTheselect statementto use to grab another tableprivate final SQLSelectStatementSQLInsertStatement.selectStmtTheselect statementto use for values to insertprivate SQLSelectStatementSQLInsertStatement.SQLInsertStatementBuilder.selectStmtTheselect statementto use for values to insertMethods in com.github.tadukoo.database.mysql.syntax.statement that return SQLSelectStatementModifier and TypeMethodDescriptionSQLSelectStatement.Build.build()Builds a newSQLSelectStatementusing the set parametersSQLSelectStatement.SQLSelectStatementBuilder.build()Builds a newSQLSelectStatementusing the set parametersSQLCreateStatement.getSelectStmt()SQLInsertStatement.getSelectStmt()Methods in com.github.tadukoo.database.mysql.syntax.statement with parameters of type SQLSelectStatementModifier 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) Constructors in com.github.tadukoo.database.mysql.syntax.statement with parameters of type SQLSelectStatementModifierConstructorDescriptionprivateSQLCreateStatement(SQLType type, boolean ifNotExists, String name, SQLSelectStatement selectStmt, List<ColumnDefinition> columns, List<ForeignKeyConstraint> foreignKeys) Constructs a newSQLCreateStatementwith the given parametersprivateSQLInsertStatement(TableRef table, List<ColumnRef> columns, List<Object> values, SQLSelectStatement selectStmt) Constructs a new SQLInsertStatement using the given parameters