我们如何将 MySQL DISTINCT 子句与 WHERE 和 LIMIT 子句一起使用?
示例
我们可以在名为“testing”的表上使用带有 DISTINCT 的 WHERE 和 LIMIT 子句,如下所示 -
mysql> Select * from testing; +------+---------+---------+ | id | fname | Lname | +------+---------+---------+ | 200 | Raman | Kumar | | 201 | Sahil | Bhalla | | 202 | Gaurav | NULL | | 203 | Aarav | NULL | | 204 | Harshit | Khurana | | 205 | Rahul | NULL | | 206 | Piyush | Kohli | | 207 | Lovkesh | NULL | | 208 | Gaurav | Kumar | | 209 | Raman | Kumar | +------+---------+---------+ 10 rows in set (0.00 sec) mysql> Select DISTINCT Lname from testing where Lname IS NOT NULL limit 3; +---------+ | Lname | +---------+ | Kumar | | Bhalla | | Khurana | +---------+ 3 rows in set (0.00 sec)
以上就是我们如何将 MySQL DISTINCT 子句与 WHERE 和 LIMIT 子句一起使用?的详细内容,更多请关注其它相关文章!