|
楼主

楼主 |
发表于 2011-1-2 09:49:24
|
只看该作者
proc sql选择multiple columns
sas adv prep guide 有这样一个问题:
Complete the following proc sql query to select the columns address and sqfeet from the table list.size and to select price from the table list.price. (only the address column appears in both tables.)
proc sql;
_______________
from list.size,list.price;
a select address,sqfeet,price
b select size.address,sqfeet,price
c select price.address,sqfeet,price
d either b or c
书上说是b 但我觉得应该是d,大家觉得应该是哪一个? |
|