In a table there may be data available i.e. duplicate. Each time you querying and get all the duplicate data.
Use DISTINCT to avoid it.
Suppose in a coountry table there are two same country name the using DISTINCT you will get the only one name for each country.
SELECT DISTINCT country_name FROM table_country;
For any types of queries, you can contact us on info[at]namasteui.com.