I want to return all rows for repeated ID where a "value" is greater than 30
I have this table
I want this table
This is my query, but it is not working. Any thoughts?
create table test as
select *
from A
where ID in (select ID from A where value >= 30);
quit;```


Try this