When more than one table is used (in a JOIN for example) there may be two columns with the same name.
In this example there is a column called name in bbc and also in cia.
name
bbc
cia
SELECT bbc.name FROM bbc JOIN cia ON bbc.name = cia.name
SELECT B.name FROM bbc B JOIN cia ON B.name = cia.name