Defines on which columns this join should happen. @param leftColum Name of the column in the left table. @param rightColumn Name of the column in the right table. @return this for chaining.
(String leftColum, String rightColumn)
| 94 | * @return <code>this</code> for chaining. |
| 95 | */ |
| 96 | public JoinStatement on(String leftColum, String rightColumn) { |
| 97 | mLeftColumn = leftColum; |
| 98 | mRightColumn = rightColumn; |
| 99 | |
| 100 | return this; |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Creates the right side of the join from a subselect and |
no outgoing calls