I am writing a SQL query and encounter a situation that I want to obtain a table instead with 156 (stands for customer number of female) and 180 (stands for customer number of male) in the same column, but with them in the same row using 'select from where' statement. (not building a new table) I would like the result table to be France, Bachelors, 156, 180. How should I do it simply? Thank you!
P.S. if I also don't want to use pivot_table statement.(I can also add an extra column with 'F' or 'M' if needed)