Add value from table to column name

Hi all,
my table looks like this:
col_a | col_b | n | m
1 | 2 | 10 | 20
2 | 1.5 | 10 | 20
1.1 | 2.1 | 10 | 20

the value of column n, m is constant each running time. How to create a table in Metabase look like this:
col_a(n=10) | col_b(m=20)
1 | 2
2 | 1.5
1.1 | 2.1
the value (n=10) need to be refreshed automatically.
Thank you,

Thank

Hi @williamvu
You would need to do some remodeling in SQL. Perhaps you can find the answer on stackoverflow.com

Thank you @flamber