In MySQL you can list the unique values from a column in a Table.
DISTINCT
- https://dev.mysql.com/doc/refman/8.0/en/distinct-optimization.html
- https://www.w3schools.com/sql/sql_distinct.asp
select DISTINCT macAddress from temp;
In MySQL you can list the unique values from a column in a Table.
DISTINCT
select DISTINCT macAddress from temp;
Be the first to comment