sql select join progress

This commit is contained in:
2024-02-02 07:54:19 +01:00
parent 27353e011a
commit e8b0f0e802
5 changed files with 81 additions and 2 deletions
+6 -1
View File
@@ -13,7 +13,12 @@
namespace matador::test {
struct flight {
struct flight
{
flight() = default;
flight(unsigned long id, const sql::entity<airplane> &plane, const std::string &name)
: id(id), airplane(plane), pilot_name(name) {}
unsigned long id{};
sql::entity<test::airplane> airplane;
std::string pilot_name;