1
SELECT nd_geolocation.nd_geolocation_id AS location_id,
2
nd_geolocation.description AS location_name
3
FROM nd_geolocation
4
GROUP BY nd_geolocation.nd_geolocation_id, nd_geolocation.description;
0 rows
SELECT nd_geolocation.nd_geolocation_id AS location_id,
nd_geolocation.description AS location_name
FROM nd_geolocation
GROUP BY nd_geolocation.nd_geolocation_id, nd_geolocation.description;