I'm new to PL/SQL. It's been on fine until now that is. I've the query this query which works fine.
declare
rec employees_practice%rowtype;
sam taxObligations%rowtype;
socialsecurity number;
rentallowance number;
transportation number;
taxableincome number;
incometaxliability number;
netpay number;
total number;
totaldeductions number;
begin
for rec in (select * from employees_practice)
loop
socialsecurity:=(5.5/100)*(rec.salary);
rentallowance:=(20/100)*(rec.salary);
if(rec.Category='S')
then transportation:= 150;
else transportation:=100;
end if;
taxableincome:=rec.Salary-socialsecurity+rentallowance+transportation;
for sam in (select * from taxObligations)
loop
if(taxableincome between sam.Minincome and sam.Maxincome)
then incometaxliability:= sam.MinimumBracketTax + (taxableincome-sam.Minincome)*(sam.TaxBracketRate/100);
else incometaxliability:=null;
end if;
end loop;
netpay:= taxableincome-incometaxliability;
total:= rec.Salary + rentallowance + transportation;
totaldeductions:=socialsecurity + incometaxliability;
-- Here, I used DBMS.... to give an output in different format.
end loop;
end;
I now want to create a function that encompasses the above code so I can call it with a single SQL or PL/SQL Query. It's been a headache for me.