Can anybody tell me why the following code when activatedby a select only affects the first line of the table???create or replace function increase(integer)returns void as 'update tab set price=price*(1+$1/100.0)' language sql;Thanks.