Is it possible to use LIMIT x with a WHERE clause? If so, how?
I am trying to do this:
select * from myVIew LIMIT 10 where type=3;
But I get the following error:
ERROR: syntax error at or near "where"
LINE 2: where type=3;
^
********** Error **********
ERROR: syntax error at or near "where"
SQL state: 42601
Character: 44
source
share