Added an Insert statement

This commit is contained in:
Dr. Patrick Urbanke
2025-03-19 07:08:45 +01:00
parent 383cc177c2
commit 28c9ae2a7d

View File

@@ -0,0 +1,18 @@
#ifndef SQLGEN_DYNAMIC_INSERT_HPP_
#define SQLGEN_DYNAMIC_INSERT_HPP_
#include <string>
#include <vector>
#include "Table.hpp"
namespace sqlgen::dynamic {
struct Insert {
Table table;
std::vector<std::string> columns;
};
} // namespace sqlgen::dynamic
#endif