Creates the right side of the join from a subselect and masks it with the given alias. @param right Right side of the join as SelectStatement subselect. @param as Alias for the right side. @return this for chaining.
(SelectStatement right, String as)
| 110 | * @return <code>this</code> for chaining. |
| 111 | */ |
| 112 | public JoinStatement right(SelectStatement right, String as) { |
| 113 | mRight = right; |
| 114 | mRightAlias = as; |
| 115 | |
| 116 | return this; |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Sets the given table as the right side of the join and |