How to fix postgres-utils eval() error: missing FROM-clause entry for table “foo”?

旧城冷巷雨未停 提交于 2019-12-08 06:56:44

问题


I'm looking for a way to evaluate price expressions stored in database in Postgres 9.1+

I tried code below from answer in How to evaluate expression in select statement in Postgres

but got error

ERROR:  missing FROM-clause entry for table "product"
LINE 1: select product.price*0.95

how to fix ?

Maybe it is possible to pass customer and product current row as eval parameters and to use them in eval expresion ?

create or replace function eval( sql  text ) returns text as $$
declare
  as_txt  text;
begin
  execute 'select ' ||   sql  into  as_txt ;
  return  as_txt ;
end;
$$ language plpgsql;


create table customer
( id int primary key,
  priceexpression text );
insert into customer values (1, 'product.price*0.95'),(2,'cost+12.0' );

create table product
( id char(20) primary key,
   price numeric(12,4),
   cost numeric(12,4) );
insert into product values ('PRODUCT1', 120, 80),('PRODUCT2', 310.5, 290);


select
  customer.id as customer,
  product.id as product,
  eval(priceexpression) as price
 from customer,product

回答1:


Serg is basically right. Your dyna-SQL is executed "on its own" so it needs to be a valid SQL statement (having "to know" all involved tables). I updated my answer in the referred thread to reflect this.

But to properly cite it in here your example should be something like (actually you should use the 2nd eval( sql text, keys text[], vals text[] ) variant!):

eval(  
  'select '||c.price_expression||' from product where id=:pid',
  '{"{cost}",:pid}',  
  array[ p.cost, p.id ]  
)      as cust_cost

This should be more straight forward, robust and modular than Sergs suggestions.




回答2:


Just add the table name somwhere. May be

insert into customer values (1, 'product.price*0.95 FROM product'),(2,'cost+12.0 FROM product' );

or may be

 execute 'select ' ||   sql || ' FROM product' into  as_txt ;

at your choice.

Hope this priceexpression is not exposed to users but only to restricted number of admins, because it's dangerous sql injection security hole.



来源:https://stackoverflow.com/questions/36939625/how-to-fix-postgres-utils-eval-error-missing-from-clause-entry-for-table-foo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!