class QueryBuilder::CQL::Statements::Select

Describes the ‘SELECT’ CQL3 statement

Public Instance Methods

to_s() click to toggle source

Builds the statement

@return [String]

# File lib/query_builder/cql/statements/select.rb, line 24
def to_s
  cql[
    "SELECT", maybe_distinct, maybe_selected, "FROM", context.to_s,
    maybe_where, maybe_order, maybe_limit, maybe_filter
  ]
end