|
Database System 0.1.0
Advanced C++20 Database System with Multi-Backend Support
|
Specification for a single JOIN clause. More...
#include <join_builder.h>

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. | |
Specification for a single JOIN clause.
Definition at line 30 of file join_builder.h.
| std::string database::query::join_spec::alias |
Optional table alias.
Definition at line 34 of file join_builder.h.
| std::string database::query::join_spec::condition |
ON condition.
Definition at line 32 of file join_builder.h.
| std::string database::query::join_spec::table |
Table to join.
Definition at line 31 of file join_builder.h.
| join_type database::query::join_spec::type |
Type of join.
Definition at line 33 of file join_builder.h.