sqlpp11
sqlpp11 copied to clipboard
over
Does sqlpp11 supply over field in postgresql and please supply a demo
There is minimal support to the extent that
select(avg(foo.omega).over())
will be interpreted as
SELECT AVG(tab_foo.omega) OVER() AS avg_
The over function does not support any arguments itself as of today.
Considering this answered.