sas code which fetch all the dataset that are modified and created in may’25 and their count from grp/credit lib. Actually i want exact count of dataset that are created or modified in may month from grp/credit lib.
... View more
data a; input party account$ balance; datalines; 1 A1 50 1 A2 60 1 A3 30 2 A4 40 2 A5 50 3 A6 30 3 A7 90 run; write a query to fetch all accounts listed to the party who has at least one account having balnce greater than 50?
... View more