I hava table with integer array field.
How can I do query like this:
select tab[1:3] from xxx;
?
I set ParamCheck on false but TUniQUery always interpret '3' like a param.
sory for my english.
PostgreSQL and array
Try to add a space after ':'
Code: Select all
select tab[1 : 3] from xxx