Certain variables? Most of the analysis procedures you would use either a VAR statement.
Proc univariate data=yourdatsetname;
var thisvar thatvar othervarname; /* list the variables of interest*/
run;
It sort of depends what type of bivariate analysis you intend. Just counts with Proc Freq you place an * between two variables or groups of variables to do bivariate:
proc freq data=yourdataset;
tables (thisvar thatvar anothervar)*(somevar someothervar somethingelse);
run;
for example would pair each of the variables in the first set of parentheses with each in the second set.