Class TJoinItem

Object
gudusoft.gsqlparser.nodes.TParseTreeNode
gudusoft.gsqlparser.nodes.TJoinItem
All Implemented Interfaces:
Visitable, Iterator<TSourceToken>

public class TJoinItem extends TParseTreeNode
Deprecated.
As of v2.7.4.0, Please use TJoinExpr instead.

SQL 1:

 select f from t1 left join t2 on t1.f1 = t2.f1 right join t3 on t1.f1 = t3.f1
In above SQL, the whole from clause can be represented by a TJoin class.

And "left join t2 on t1.f1 = t2.f1 right join t3 on t1.f1 = t3.f1" was represented by 2 instance of class TJoinItem.

These 2 instance can be accessed via TJoin.getJoinItems().

One for: "left join t2 on t1.f1 = t2.f1", the other is "right join t3 on t1.f1 = t3.f1".