Answer:
The query that shows the difference between the total number of city entries in the table and the number of distinct city entries in the table is following.
SELECT COUNT (CITY) – COUNT (DISTINCT CITY) FROM STATION; Here STATION is the table name and by using SELECT all the possible entries can be displayed.