QueryBuilder
public final class QueryBuilderA factory class to create a Select instance.
- 
                  
                  Create a SELECT statement instance that you can use further (e.g. calling the from() function) to construct the complete query statement. DeclarationSwift public static func select(_ results: SelectResultProtocol...) -> SelectParametersresultsThe array of the SelectResult object for specifying the returned values. Return ValueA Select object. 
- 
                  
                  Create a SELECT statement instance that you can use further (e.g. calling the from() function) to construct the complete query statement. DeclarationSwift public static func select(_ results: [SelectResultProtocol]) -> SelectParametersresultsThe array of the SelectResult object for specifying the returned values. Return ValueA Select object. 
- 
                  
                  Create a SELECT DISTINCT statement instance that you can use further (e.g. calling the from() function) to construct the complete query statement. DeclarationSwift public static func selectDistinct(_ results: SelectResultProtocol...) -> SelectParametersresultsThe array of the SelectResult object for specifying the returned values. Return ValueA Select distinct object. 
- 
                  
                  Create a SELECT DISTINCT statement instance that you can use further (e.g. calling the from() function) to construct the complete query statement. DeclarationSwift public static func selectDistinct(_ results: [SelectResultProtocol]) -> SelectParametersresultsThe array of the SelectResult object for specifying the returned values. Return ValueA Select distinct object. 
 QueryBuilder Class Reference
        QueryBuilder Class Reference