Database System 0.1.0
Advanced C++20 Database System with Multi-Backend Support
Loading...
Searching...
No Matches
database::query::join_spec Struct Reference

Specification for a single JOIN clause. More...

#include <join_builder.h>

Collaboration diagram for database::query::join_spec:
Collaboration graph

Public Attributes

std::string table
 Table to join.
 
std::string condition
 ON condition.
 
join_type type
 Type of join.
 
std::string alias
 Optional table alias.
 

Detailed Description

Specification for a single JOIN clause.

Definition at line 30 of file join_builder.h.

Member Data Documentation

◆ alias

std::string database::query::join_spec::alias

Optional table alias.

Definition at line 34 of file join_builder.h.

◆ condition

std::string database::query::join_spec::condition

ON condition.

Definition at line 32 of file join_builder.h.

◆ table

std::string database::query::join_spec::table

Table to join.

Definition at line 31 of file join_builder.h.

◆ type

join_type database::query::join_spec::type

Type of join.

Definition at line 33 of file join_builder.h.


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