|
xale-db 1.0
minimal SQL engine, written in c++
|
Represents a JOIN clause (INNER JOIN only for now). More...
#include <Statement.h>

Public Attributes | |
| std::string | tableName |
| Joined table name. | |
| std::string | leftTableCol |
| Left side of ON condition (e.g. "orders.user_id"). | |
| std::string | rightTableCol |
| Right side of ON condition (e.g. "users.id"). | |
Represents a JOIN clause (INNER JOIN only for now).
| std::string Xale::Query::JoinClause::leftTableCol |
Left side of ON condition (e.g. "orders.user_id").
| std::string Xale::Query::JoinClause::rightTableCol |
Right side of ON condition (e.g. "users.id").
| std::string Xale::Query::JoinClause::tableName |
Joined table name.