naveen


{ City } delhi
< Country > india
* Profession * nathupur
User No # 94970
Total Questions Posted # 5
Total Answers Posted # 18

Total Answers Posted for My Questions # 15
Total Views for My Questions # 32908

Users Marked my Answers as Correct # 16
Users Marked my Answers as Wrong # 29
Answers / { naveen }

Question { Accenture, 10127 }

in data set200 observation how to take 110,150,170 using sql procedure?


Answer

proc sql;
select *
from
where obs, in(11, 23,44);
quit;

Is This Answer Correct ?    0 Yes 3 No

Question { Accenture, 10127 }

in data set200 observation how to take 110,150,170 using sql procedure?


Answer

proc sql;
select *
from qqq
where Height in(69);
quit;

Is This Answer Correct ?    0 Yes 2 No


Question { Accenture, 7817 }

what is conditional processing?


Answer

There are two kinds of main
conditional statement which we use
like.......................

where
if

ex--where age<30 and age>50
if sex='m' then male

Is This Answer Correct ?    3 Yes 0 No

Prev    1    [2]