class QueryBuilder::CQL::Statements::Delete

Describes the ‘DELETE’ CQL3 statement

Public Instance Methods

to_s() click to toggle source

Builds the statement

@return [String]

# File lib/query_builder/cql/statements/delete.rb, line 21
def to_s
  cql[
    "DELETE", maybe_columns, "FROM", context.to_s,
    maybe_using, maybe_where, maybe_if
  ]
end