I want to run some descriptive statistics of sch_q2 by county_name and by SES. After running the below code, I have 2 separate tables with the same row header. Is there any way to append these 2 tables?

Append into one table like that

Thank you in advance
Code:
asdoc tab sch_q2 county_name, replace save(headteacher) asdoc tab sch_q2 SES, append save(headteacher)
Append into one table like that
Thank you in advance
Comment