Creates the left side of the join from a subselect and masks it with the given alias. @param left Left side of the join as SelectStatement subselect. @param as Alias for the left side. @return this for chaining.
(SelectStatement left, String as)
| 63 | * @return <code>this</code> for chaining. |
| 64 | */ |
| 65 | public JoinStatement left(SelectStatement left, String as) { |
| 66 | mLeft = left; |
| 67 | mLeftAlias = as; |
| 68 | |
| 69 | return this; |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Sets the given table as the left side of the join and |