Class SQLSelectStatement.SQLSelectStatementBuilder

java.lang.Object
com.github.tadukoo.database.mysql.syntax.statement.SQLSelectStatement.SQLSelectStatementBuilder
All Implemented Interfaces:
SQLSelectStatement.Build, SQLSelectStatement.ColumnsOrTables, SQLSelectStatement.DistinctOrColumnsOrTables, SQLSelectStatement.FromTables, SQLSelectStatement.WhereStatementAndBuild
Enclosing class:
SQLSelectStatement

A builder to build a SQLSelectStatement. It takes the following parameters:
SQL Select Statement Parameters
Parameter Description Required or Default
distinct Whether to select distinct columns or not Defaults to false
returnColumns The columns to be selected Defaults to an empty list (will select all then)
fromTables The tables to grab data from Required
whereStatement The conditional where statement Defaults to null
Version:
Alpha v.0.3
Author:
Logan Ferree (Tadukoo)