christianparpart / Lightweight

thin and lightweight, fast, ODBC API wrapper for modern C++ uses
5 stars 1 forks source link

SqlQueryBuilder: support sub queries #61

Closed christianparpart closed 1 month ago

christianparpart commented 1 month ago

e.g. like:

SqlQueryBuilder::FromTable("A")
    .Select()
    .Field("Name")
    .WhereIn("Another", SqlQueryBuilder::FromTable("B").Select("Value"))
    .All();
christianparpart commented 1 month ago

done