To find all the records in a given component. Below is the query which takes component name as input and the list of all records in that component as output.
SELECT recname
FROM pspnlgroup a, pspnlfield b
WHERE (a.pnlname = b.pnlname OR a.pnlname = b.subpnlname)
AND a.pnlgrpname = :component_name
GROUP BY recname
No comments:
Post a Comment