共計 1341 個字符,預計需要花費 4 分鐘才能閱讀完成。
本篇內容主要講解“SQL 怎么實現分組 limit”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓丸趣 TV 小編來帶大家學習“SQL 怎么實現分組 limit”吧!
mysql create table a (id int,fid int ,name varchar(10));
Query OK, 0 rows affected (0.10 sec)
mysql insert into a value (1,1, a
Query OK, 1 row affected (0.04 sec)
mysql insert into a value (2,1, b
Query OK, 1 row affected (0.01 sec)
mysql insert into a value (3,1, c
Query OK, 1 row affected (0.01 sec)
mysql insert into a value (4,2, d
Query OK, 1 row affected (0.02 sec)
mysql insert into a value (5,2, e
Query OK, 1 row affected (0.01 sec)
mysql insert into a value (6,2, f
Query OK, 1 row affected (0.00 sec)
mysql select * from a
– ;
+——+——+——+
| id | fid | name |
+——+——+——+
| 1 | 1 | a |
| 2 | 1 | b |
| 3 | 1 | c |
| 4 | 2 | d |
| 5 | 2 | e |
| 6 | 2 | f |
+——+——+——+
6 rows in set (0.00 sec)
mysql select * from a where 2 (select count(*) from a b where a.fid=b.fid and a.id b.id )order by fid ;
+——+——+——+
| id | fid | name |
+——+——+——+
| 2 | 1 | b |
| 3 | 1 | c |
| 5 | 2 | e |
| 6 | 2 | f |
+——+——+——+
4 rows in set (0.00 sec)
mysql select * from a where 2 (select count(*) from a b where a.fid=b.fid and a.id b.id )order by fid ;
+——+——+——+
| id | fid | name |
+——+——+——+
| 1 | 1 | a |
| 2 | 1 | b |
| 4 | 2 | d |
| 5 | 2 | e |
+——+——+——+
4 rows in set (0.00 sec)
到此,相信大家對“SQL 怎么實現分組 limit”有了更深的了解,不妨來實際操作一番吧!這里是丸趣 TV 網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!