Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

You need to create an In List that it is to be later used in
a Where Clause that includes all the Regions that begin with
the letter A from the sashelp.shoes table. Using PROC SQL
with an into clause create the following string from the
sashelp.shoes table using the variable region
“AFRICA”,”ASIA”,…..

Answer Posted / vema reddy dwarampudi

Please add from clause in the above code
proc sql noprint;
select "'"||left(trim(Region))||"'" into :inlist separated
by ','
from sashelp.shoes
where Region like 'A%';
quit;

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to convert a numeric variable to a character variable?

1255


Differentiate between ceil and floor functions.

1196


What is the sas data set? : sas-grid-administration

1025


what is the difference between nodup and nodupkey options? : Sas programming

1265


What is the command used to find missing values?

1141


What is the difference between where and if statement?

1147


What is the length assigned to the target variable by the scan function?

1202


What is the role of sas grid administrator? : sas-grid-administration

1341


How necessary is it to be creative in your work?

2523


explain the function of substr in sas? : Sas-administrator

1061


How can you create a macro variable with in data step? : sas-macro

1087


What are the statements that are executed only?

1204


What is factor analysis?

1194


Do you need to rearrange the order of the data for the report?

2359


Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro

1255