
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
Curently, subselects can't be used as PSQL expressions, and all these constructions result in error:
var = (select ... from ...);
if ((select ... from ...) = 1) then
if (1 = any (select ... from ...)) then
if (1 in (select ... from ...)) then
These are all potentially valid expressions. Now the user need to write independents SELECT ... INTO without any advantage.
|
|
Description
|
Curently, subselects can't be used as PSQL expressions, and all these constructions result in error:
var = (select ... from ...);
if ((select ... from ...) = 1) then
if (1 = any (select ... from ...)) then
if (1 in (select ... from ...)) then
These are all potentially valid expressions. Now the user need to write independents SELECT ... INTO without any advantage. |
Show » |
| There are no comments yet on this issue.
|
|