- 论坛徽章:
- 0
|
- create table a(
- book_id int unsigned not null,
- user_id int unsigned not null
- );
- insert into a (book_id, user_id) values (1,12345),(1,23456),(1,34567);
- create table b(
- book_id int unsigned not null,
- book_time int unsigned not null
- );
- insert into b(book_id, book_time) values (1,1111222);
- select count(*), a.book_id, b.book_time from a left join b on b.book_id=a.book_id group by b.book_time;
复制代码 +----------+----------+-----------+
| count(*) | book_id | book_time |
+----------+----------+-----------+
| 3 | 1 | 222222 |
+----------+----------+-----------+ |
|