mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-03 16:09:47 -06:00
20 lines
299 B
C++
20 lines
299 B
C++
#ifndef SQLGEN_DYNAMIC_SELECTFROM_HPP_
|
|
#define SQLGEN_DYNAMIC_SELECTFROM_HPP_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Column.hpp"
|
|
#include "Table.hpp"
|
|
|
|
namespace sqlgen::dynamic {
|
|
|
|
struct SelectFrom {
|
|
Table table;
|
|
std::vector<Column> columns;
|
|
};
|
|
|
|
} // namespace sqlgen::dynamic
|
|
|
|
#endif
|