I have student table
id | name | zip 1 | abc | 1234 2 | xyz | 4321 3 | cde | 1234
And i want to only display unique zip code which is 4321. I don't want to display the 1 and 3 record number. So, how can i display the unique record only?
Thanks In Advance.