0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 21:04:15 +08:00
sqlpp11/examples/usage_find_package/src/main.cpp

8 lines
142 B
C++
Raw Normal View History

#include <sqlpp11/select.h>
#include <sqlpp11/alias_provider.h>
int main()
{
select(sqlpp::value(false).as(sqlpp::alias::a));
return 0;
}