How we can get distinct columns values in MySql?
SELECT DISTINCT name FROM Users;
// Here name is the field & Users is the Table name
Suggest An Answer
No suggestions Available!
SELECT DISTINCT name FROM Users;
// Here name is the field & Users is the Table name