I can do some simple stored proc's, however for the project that i'm busy with i need a 'Special' Stored proc to return Unique entries from a specific col..

I have a table with Suburbs, Postal code, and City...
Code:
Uid	Suburb	Code	City

1	Que	2015	JHB
2	Kelvin	2017	JHB
3	Turf	2091	JHB
4	Bla	3082	VDB
So i need to select all unique City's from the DB to populate a Combobox.

I've previously done this all within the app or used a seperate DB to hold the City, however in this app i'm following the clients 'Preset' layout and trying to follow as close as posible...

Thanks ...

Gremmy...