Display unique building names from LOCATION table.
Write queries/statements for the following. (Use tables created in Chapter 4 Lab Activity.)
```
SQL> SELECT DISTINCT BUILDING
2 FROM LOCATION;
BUILDIN
-------
Gandhi
Kennedy
Nehru
```
Computer Science & Information Technology