Issue with using 1 table in 2 join statements

Hello,
I have a table which has 2 columns referencing a table, so 2 joins statements are used, as shown in the image below.

The output for the join statements is the ID &Name, however, the challenge I'm facing is that the column headers are the same for the 2 tables, shown here

and remain the same even if I attempt to change the name, as shown below.

Is there a walkaround to this?

{
"browser-info": {
"language": "en-US",
"platform": "Win32",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36",
"vendor": "Google Inc."
},
"system-info": {
"file.encoding": "UTF-8",
"java.runtime.name": "OpenJDK Runtime Environment",
"java.runtime.version": "11.0.15+10",
"java.vendor": "Eclipse Adoptium",
"java.vendor.url": "https://adoptium.net/",
"java.version": "11.0.15",
"java.vm.name": "OpenJDK 64-Bit Server VM",
"java.vm.version": "11.0.15+10",
"os.name": "Linux",
"os.version": "4.18.0-348.20.1.el8_5.x86_64",
"user.language": "en",
"user.timezone": "GMT"
},
"metabase-info": {
"databases": [
"h2",
"oracle",
"postgres"
],
"hosting-env": "unknown",
"application-database": "postgres",
"application-database-details": {
"database": {
"name": "PostgreSQL",
"version": "14.1 (Debian 14.1-1.pgdg110+1)"
},
"jdbc-driver": {
"name": "PostgreSQL JDBC Driver",
"version": "42.3.2"
}
},
"run-mode": "prod",
"version": {
"date": "2022-05-31",
"tag": "v0.43.2",
"branch": "release-x.43.x",
"hash": "433d533"
},
"settings": {
"report-timezone": "Africa/Lagos"
}
}
}

Hi @oaajibade
Looks like you are seeing this issue - you'll have to use SQL instead, so you can specify the alias uniquely:
https://github.com/metabase/metabase/issues/12685 - upvote by clicking :+1: on the first post

Noted. Thanks