how do you find out the unique values?

Using DISTINCT in the query, such as SELECT DISTINCT column_name FROM table_name; You can also ask for a number of distinct values by SELECT COUNT (DISTINCT column_name) FROM table_name;

Leave a Reply

Your email address will not be published. Required fields are marked *