Skip to content

Tag: sql

how to make same table the tables below

I have created to tables using code below. How to have in one table the variables total_kids and tot_0_5 using sql? proc sql; create table total as select *, count (distinct var_name1) as …