xale-db 1.0
minimal SQL engine, written in c++
Loading...
Searching...
No Matches
Xale::Query::JoinClause Struct Reference

Represents a JOIN clause (INNER JOIN only for now). More...

#include <Statement.h>

Collaboration diagram for Xale::Query::JoinClause:
Collaboration graph

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").

Detailed Description

Represents a JOIN clause (INNER JOIN only for now).

Member Data Documentation

◆ leftTableCol

std::string Xale::Query::JoinClause::leftTableCol

Left side of ON condition (e.g. "orders.user_id").

◆ rightTableCol

std::string Xale::Query::JoinClause::rightTableCol

Right side of ON condition (e.g. "users.id").

◆ tableName

std::string Xale::Query::JoinClause::tableName

Joined table name.


The documentation for this struct was generated from the following file: