![]() |
Home | Libraries | People | FAQ | More |
Returns the name of the physical table the column belongs to.
string_view
original_table() const noexcept;
E.g. in "SELECT * FROM employees emp"
,
original_table()
will be "employees"
.
This is optional information - it won't be populated unless the connection
executing the query has meta_mode() == metadata_mode::full
.
No-throw guarantee.
The returned reference is valid as long as *this
is alive and hasn't been assigned to
or moved from.