[eluser]datactrl[/eluser]
I'm using POstgreSQL. How can a very simple query such as the following will cause an error on CI database query?
select a, b, round(c * 0.5, 2)as d from table1;
If I remove round function and make it as
select a, b, c * 0.5 as d from table1;
Then it works