Join clauses range from simple to complex including joining complete subqueries on multiple conditions. qb has your back with all of these use cases.
Table of Contents
Name
Type
Required
Default
Description
table
true
​
first
false
operator
string
false
"="
The boolean operator for the join clause.
second
false
type
string
false
"inner"
where
boolean
false
false
Applies a join to the query. The simplest join is to a table based on two columns:
When doing a simple join using =
as the operator, you can omit it and pass just the column names:
``Expressions
are also supported as the table
argument (though you may prefer the readability of the joinRaw
method):
Using raw
will most likely tie your code to a specific database, so think carefully before using the raw
method if you want your project to be database agnostic.
When you need to specify more clauses to join, you can pass a function as the second argument:
You can specify where
clauses in your joins as well.
Conditions inside a join clause can be grouped using a function.
A preconfigured JoinClause
can also be passed to the join function. This allows you to extract shared pieces of code out to different functions.
Name
Type
Required
Default
Description
table
string
true
​
The raw SQL string to use as the table.
first
false
operator
string
false
"="
The boolean operator for the join clause.
second
false
type
string
false
"inner"
Adds a join to another table based on a WHERE
clause instead of an ON
clause. WHERE
clauses introduce parameters and parameter bindings whereas on
clauses join between columns and don't need parameter bindings.
For simple joins, this specifies a column on which to join the two tables:
For complex joins, a function can be passed to first
. This allows multiple on
and where
conditions to be applied to the join. See the documentation for join
for more information.
Name
Type
Required
Default
Description
table
string
true
​
The raw SQL string to use as the table.
first
false
operator
string
false
"="
The boolean operator for the join clause.
second
false
type
string
false
"inner"
where
boolean
false
false
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use a closure to define the where clauses where possible.
Uses the raw SQL provided to as the table for the join clause. All the other functionality of joinRaw
matches the join
method. Additionally, there are leftJoinRaw
, rightJoinRaw
, and crossJoinRaw
methods available.
Using joinRaw
will most likely tie your code to a specific database, so think carefully before using the joinRaw
method if you want your project to be database agnostic.
Name
Type
Required
Default
Description
alias
string
true
The alias for the derived table.
input
Function | QueryBuilder
true
​
Either a QueryBuilder
instance or a function to define the derived query.
first
true
operator
string
false
"="
The boolean operator for the join clause.
second
false
type
string
false
"inner"
where
boolean
false
false
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use a closure to define the where clauses where possible.
Adds a join to a derived table. All the functionality of the join
method applies to constrain the query. The derived table can be defined using a QueryBuilder
instance:
Alternatively, a function may be used to define the derived table:
Complex join conditions are also possible by passing a function as the third parameter:
Name
Type
Required
Default
Description
table
true
​
first
string | Expression | Function
false
operator
string
false
"="
The boolean operator for the join clause.
second
false
where
boolean
false
false
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use a closure to define the where clauses where possible.
Name
Type
Required
Default
Description
table
string
true
​
The raw SQL string to use as the table.
first
false
operator
string
false
"="
The boolean operator for the join clause.
second
false
where
boolean
false
false
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use a closure to define the where clauses where possible.
Uses the raw SQL provided to as the table for the left join clause. All the other functionality of leftJoinRaw
matches the join
method.
Using leftJoinRaw
will most likely tie your code to a specific database, so think carefully before using the leftJoinRaw
method if you want your project to be database agnostic.
Name
Type
Required
Default
Description
alias
string
true
The alias for the derived table.
input
Function | QueryBuilder
true
​
Either a QueryBuilder
instance or a function to define the derived query.
first
true
operator
string
false
"="
The boolean operator for the join clause.
second
false
where
boolean
false
false
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use a closure to define the where clauses where possible.
Adds a left join to a derived table. All the functionality of the joinSub
method applies to define and constrain the query.
Name
Type
Required
Default
Description
table
true
​
first
false
operator
string
false
"="
The boolean operator for the join clause.
second
false
where
boolean
false
false
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use a closure to define the where clauses where possible.
Name
Type
Required
Default
Description
table
string
true
​
The raw SQL string to use as the table.
first
false
operator
string
false
"="
The boolean operator for the join clause.
second
false
where
boolean
false
false
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use a closure to define the where clauses where possible.
Uses the raw SQL provided to as the table for the right join clause. All the other functionality of rightJoinRaw
matches the join
method.
Using rightJoinRaw
will most likely tie your code to a specific database, so think carefully before using the rightJoinRaw
method if you want your project to be database agnostic.
Name
Type
Required
Default
Description
alias
string
true
The alias for the derived table.
input
Function | QueryBuilder
true
​
Either a QueryBuilder
instance or a function to define the derived query.
first
true
operator
string
false
"="
The boolean operator for the join clause.
second
false
where
boolean
false
false
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use a closure to define the where clauses where possible.
Adds a right join to a derived table. All the functionality of the joinSub
method applies to define and constrain the query.
Name
Type
Required
Default
Description
table
true
​
Name
Type
Required
Default
Description
table
string
true
​
The raw SQL string to use as the table.
Uses the raw SQL provided to as the table for the cross join clause. Cross joins cannot be further constrained with on
or where
clauses.
Using crossJoinRaw
will most likely tie your code to a specific database, so think carefully before using the crossJoinRaw
method if you want your project to be database agnostic.
Name
Type
Required
Default
Description
alias
string
true
The alias for the derived table.
input
Function | QueryBuilder
true
​
Either a QueryBuilder
instance or a function to define the derived query.
Adds a cross join to a derived table. The derived table can be defined using a QueryBuilder
instance or a function just as with joinSub
. Cross joins cannot be constrained, however.
name
string
true
The name for the cross apply table
tableDef
function
| QueryBuilder
true
A QueryBuilder instance or a function that accepts a new query builder instance to configure.
Adds a cross apply join using a derived table. The derived table can be defined using a QueryBuilder
instance or a function just as with joinSub
.
name
string
true
The name for the cross apply table
tableDef
function
| QueryBuilder
true
A QueryBuilder instance or a function that accepts a new query builder instance to configure.
Adds a outer apply join using a derived table. The derived table can be defined using a QueryBuilder
instance or a function just as with joinSub
.
Name
Type
Required
Default
Description
table
true
​
type
string
false
"inner"
The type of the join. Valid types are inner
, left
, right
, or cross
.
Creates a new JoinClause
. A JoinClause
is a specialized version of a QueryBuilder
. You may call on
or orOn
to constrain the JoinClause
. You may also call any where
methods.
Creating a JoinClause
directly is useful when you need to share a join between different queries. You can create and configure the JoinClause
in a function and pass it to queries as needed.
Although a JoinClause
can be passed to join
, leftJoin
, rightJoin
, and crossJoin
, the type of the JoinClause
will override the type of the function.
A JoinClause
is a specialized version of a QueryBuilder
. You may call on
or orOn
to constrain the JoinClause
. You may also call any where
methods.
Name
Type
Required
Default
Description
first
false
operator
string
false
"="
The boolean operator for the condition.
second
false
combinator
string
false
"and"
The boolean combinator for the clause (e.g. "and" or "or").
Applies a join condition to the JoinClause
. An alias for whereColumn
.
Name
Type
Required
Default
Description
first
false
operator
string
false
"="
The boolean operator for the condition.
second
false
Applies a join condition to the JoinClause
using an or
combinator. An alias for orWhereColumn
.
You can optionally configure qb to ignore duplicate joins. With this setting turned on each JoinClause
is inspected and checked if it matches any existing JoinClause
instances on the query. This is useful if you have a table shared between optional constraints and want to ensure it is only added once.
You can opt-in to this behavior by setting preventDuplicateJoins = true
in your moduleSettings
in config/ColdBox.cfc
.
string | |
The name of the table or a object from which the query is based. Alternatively, a configured instance can be passed.
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
The type of the join. Passing this as an argument is discouraged for readability. Use the dedicated methods like and where possible.
Sets if the value of second
should be interpreted as a column or a value. Passing this as an argument is discouraged. Use the dedicated or a join closure where possible.
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
The type of the join. Passing this as an argument is discouraged for readability. Use the dedicated methods like and with a join function where possible.
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
The type of the join. Passing this as an argument is discouraged for readability. Use the dedicated methods like and where possible.
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
The type of the join. Passing this as an argument is discouraged for readability. Use the dedicated methods like and where possible.
string | |
The name of the table or a object from which the query is based. Alternatively, a configured instance can be passed.
(Note: a instance may have a different join type than a left
join. The instance's join type will be used.)
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
string | |
The name of the table or a object from which the query is based. Alternatively, a configured instance can be passed.
(Note: a instance may have a different join type than a right
join. The instance's join type will be used.)
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
string | | Function
The first column or to join the table on. Alternatively, a function can be passed to configure complex join statements.
string |
The second column or to join the table on.
string | |
The name of the table or a object from which the query is based. Alternatively, a configured instance can be passed.
(Note: a instance may have a different join type than a cross
join. The instance's join type will be used.)
string |
The name of the table or a object from which the query is based.
string | | Function
The first column or of the condition. Alternatively, a function can be passed to nest conditions with parenthesis.
string |
The second column or of the condition.
string | | Function
The first column or of the condition. Alternatively, a function can be passed to nest conditions with parenthesis.
string |
The second column or of the condition.