Re: Make optimized LEFT JOIN with GROUP BY
You can use SQL_CALC_FOUND_ROWS instead, MySQL will then calculate how many rows there were without a LIMIT clause. Then you can fetch that value using FOUND_ROWS().
mysql> select * from b;
+------+------+
| id | cat |
+------+------+
| 1 | 1 |
| 1 | 4 |
| 2 | 1 |
| 3 | 4 |
| 3 | 10 |
+------+------+
5 rows in set (0.00 sec)
mysql> SELECT SQL_CALC_FOUND_ROWS * FROM b WHERE cat = 4 LIMIT 1;
+------+------+
| id | cat |
+------+------+
| 1 | 4 |
+------+------+
1 row in set (0.00 sec)
mysql> SELECT FOUND_ROWS();
+--------------+
| FOUND_ROWS() |
+--------------+
| 2 |
+--------------+
Subject
Views
Written By
Posted
13205
May 03, 2006 08:30AM
5565
May 03, 2006 09:11AM
4454
May 03, 2006 09:20AM
4038
May 03, 2006 09:21AM
6229
May 03, 2006 01:19PM
4337
May 03, 2006 02:38PM
2867
May 03, 2006 02:43PM
3900
May 03, 2006 03:35PM
3837
May 03, 2006 12:58PM
2761
May 03, 2006 01:17PM
2636
May 03, 2006 01:23PM
2538
May 03, 2006 04:03PM
2404
May 03, 2006 04:17PM
4583
May 03, 2006 04:29PM
2702
May 03, 2006 05:09PM
2722
May 03, 2006 05:45PM
Re: Make optimized LEFT JOIN with GROUP BY
2824
May 03, 2006 06:41PM
2617
May 04, 2006 06:05AM
4168
May 04, 2006 08:10AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.