which of the following proc statement can be used to delete all the SAS datasets present in the library MyWork
proc datasets lib=Mywork kill ;run;
proc datasets lib=Mywork delete ;run;
proc datasets; lib=Mywork delete ;run;
proc datasets lib=Mywork erase ;run;