Answer Posted / dvsr
Without index if we executed the query it will go to the
full table scan. If any data set or table has the index
first query checks that particular If condition or where
condition in that column then it will go to the remaining
columns.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
Explain the special input delimiters used in sas programming.
What are the different versions of sas that you have used until now? : sas-grid-administration
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
What are the five ways to do a table lookup in sas? : sas-grid-administration
do you need to know if there are any missing values? : Sas programming
Explain bmdp procedure?
What is the difference between SAS functions and procedures?
what is function of retain statment
How do you delete duplicate observations in sas?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
what is slowly changing dimension? : Sas-di
How to create an external dataset with sas code?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.