mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
8 lines
142 B
C++
8 lines
142 B
C++
|
#include <sqlpp11/select.h>
|
||
|
#include <sqlpp11/alias_provider.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
select(sqlpp::value(false).as(sqlpp::alias::a));
|
||
|
return 0;
|
||
|
}
|