Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table. The STATION table is described as follows
Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table. The STATION table is described as follows
To find the difference between the total number of CITY
entries and the number of distinct CITY
entries in the STATION
table, you can use the following SQL query:
SELECT
COUNT(CITY) AS TotalCityCount,
COUNT(DISTINCT CITY) AS DistinctCityCount,
(COUNT(CITY) - COUNT(DISTINCT CITY)) AS CityCountDifference
FROM STATION;
No comments:
Post a Comment