Answers for "how to find the top 2 unique records using mysql"

SQL
0

how to find the top 2 unique records using mysql

mysql> insert into DemoTable1383 values(200,78);
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable1383 values(200,89);
Query OK, 1 row affected (0.12 sec)
mysql> insert into DemoTable1383 values(200,89);
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable1383 values(200,87);
Query OK, 1 row affected (0.29 sec)
mysql> insert into DemoTable1383 values(203,97);
Query OK, 1 row affected (0.20 sec)
mysql> insert into DemoTable1383 values(200,57);
Query OK, 1 row affected (0.17 sec)
insert into DemoTable1383 values(240,20);
Posted by: Guest on November-16-2020

Code answers related to "how to find the top 2 unique records using mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language