select bname from account
from account
Find the names of all branches in the account relation.
select distinct bname from account
By default, duplicates are not removed. We can state it explicitly using all.
select all bname from account