I want to write a SELECT statement as follows:
SELECT field_a
FROM my_table
WHERE field_b IN (my_function(field_c)).
Is that possible?
my_function would have to return an array?
I'm using PostgreSQL 8.2
|
I want to write a SELECT statement as follows:
Is that possible?
I'm using PostgreSQL 8.2
| ||||
feedback
|
The return type of your function should be Note that you can use an
, but if your function returns a complex type, the former style is preferrable, since you can compare to one field of the complex type and return the other within one query, like this:
We compare with This would be impossible with a correlated subquery. | |||||||||
feedback
|
|
As long as my_function's return type is just a result set with the same type as field_b (like Varchar(20) or int), then you should be fine. | |||
|
feedback
|