Files
sqlgen/include/dynamic/SelectFrom.hpp
Dr. Patrick Urbanke ab5bc10e1d Added CreateTable
2025-03-19 06:44:13 +01:00

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