what is the use of proc sql?

Answer Posted / name is no need

good answers from nishant and ganesh

Is This Answer Correct ?    7 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is factor analysis?

651


if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation

1158


What commands are used in the case of including or excluding any specific variables in the data set?

581


Difference between SAS STATA & SPSS?

668


Explain the special input delimiters used in sas programming.

573






What are the automatic variables for macro? : sas-macro

665


What does the RUN statement do?

844


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.

1788


how can you import .csv file in to sas? : Sas programming

627


what is sas database server? : Sas-di

603


What are types of transport files?

6815


I have a dataset concat having a variable a b & c. How to rename a b to e & f?

748


What are the statements in proc sql?

582


How are numeric and character missing values represented internally?

1129


Differentiate between ceil and floor functions.

648