module Clear::SQL::Query::Where

Overview

Feature WHERE clause building. each call to where method stack where clause. Theses clauses are then combined together using the AND operator. Therefore, query.where("a").where("b") will return a AND b

Direct including types

Defined in:

clear/sql/query/where.cr

Instance Method Summary

Instance Method Detail

def clear_wheres #

Clear all the where clauses and return self


[View source]
def or_where(node : Clear::Expression::Node) #

Build SQL #or_where condition using a Clear::Expression::Node

query.or_where(Clear::Expression::Node::InArray.new("id", ['1', '2', '3', '4']))
# Note: in this example, InArray node use unsafe strings

If useful for moving a where clause from a request to another one:

query1.or_where { a == b } # WHERE a = b
query2.or_where(query1.wheres[0]) # WHERE a = b

[View source]
def or_where(__template : String, *__args) #

[View source]
def or_where(__template : String, **__named_tuple) #

[View source]
def or_where(&) #

Build SQL #where condition using the Expression engine.

query.or_where { id == 1 }

[View source]
def where(node : Clear::Expression::Node) #

Build SQL #where condition using a Clear::Expression::Node

query.where(Clear::Expression::Node::InArray.new("id", ['1', '2', '3', '4']))
# Note: in this example, InArray node use unsafe strings

If useful for moving a where clause from a request to another one:

query1.where { a == b } # WHERE a = b
query2.where(query1.wheres[0]) # WHERE a = b

[View source]
def where(&) #

Build SQL #where condition using the Expression engine.

query.where { id == 1 }

[View source]
def where(__conditions : NamedTuple | Hash(String, Clear::SQL::Any)) #

Build SQL #where condition using a NamedTuple. this will use:

  • the = operator if compared with a literal
query.where({keyword: "hello"}) # WHERE keyword = 'hello'
  • the IN operator if compared with an array:
query.where({x: [1, 2]}) # WHERE x in (1, 2)
  • the >= and <= | < if compared with a range:
query.where({x: (1..4)})  # WHERE x >= 1 AND x <= 4
query.where({x: (1...4)}) # WHERE x >= 1 AND x < 4
  • You also can put another select query as argument:
query.where({x: another_select}) # WHERE x IN (SELECT ... )

[View source]
def where(__template : String, *__args) #

Build SQL #where condition using a template string and interpolating ? characters with parameters given in a tuple or array.

where("x = ? OR y = ?", 1, "l'eau") # WHERE x = 1 OR y = 'l''eau'

Raise error if there's not enough parameters to cover all the ? placeholders


[View source]
def where(__template : String, **__tuple) #

Build SQL #where interpolating :keyword with the NamedTuple passed in argument.

where("id = :id OR date >= :start", id: 1, start: 1.day.ago)
# WHERE id = 1 AND date >= '201x-xx-xx ...'

[View source]
def where(**tuple) #

[View source]