MySQL Forums
Forum List  »  German

Re: Performance bei SELECT
Posted by: Thomas Wiedmann
Date: January 20, 2012 12:11PM

Hallo Mark,
diese zwei Spalten sind meiner Meinung nach vollkommen überdimensioniert.

CREATE TABLE `items` (
[...]
`Brand` varchar(255) NOT NULL, 
[...]
`attr_gender` varchar(100) NOT NULL, 
[...]
KEY `Brand` (`Brand`), 
[...]

wirklich benötigt wird nur dieser Größe:

SELECT MAX(LENGTH(brand)), MAX(LENGTH(attr_gender)) FROM items;

+--------------------+--------------------------+
| MAX(LENGTH(brand)) | MAX(LENGTH(attr_gender)) |
+--------------------+--------------------------+
|                 57 |                        1 |
+--------------------+--------------------------+

deshalb würde ich diese zwei Spalten in etwa so kürzen und einen combined index darüber legen:

ALTER TABLE items
 MODIFY brand VARCHAR(80) NOT NULL,
 MODIFY attr_gender VARCHAR(10) NOT NULL;
 
ALTER TABLE items
 DROP KEY brand,
 ADD KEY idx_brand_gender (brand, attr_gender);

Jetzt bitte nochmal den Query mit EXPLAIN ausführen.
EXPLAIN SELECT items.Brand, 
       SUM(
            (SELECT SUM(its.PhysicalStock)
              FROM items_stock AS its
             WHERE its.ItemNrInt = items.ItemNrInt
           )
       ) AS stockValue
FROM items
LEFT JOIN ( SELECT ItemNrInt,MAX(OrderQty),MAX(FullPrice),MAX(OrderDate),MAX(ItemPriceNoVAT),MAX(Status)
              FROM invoicelines
             GROUP BY ItemNrInt
             ORDER BY NULL ) invoicelines
ON (invoicelines.ItemNrInt = items.ItemNrInt)
WHERE items.attr_gender = '8'
GROUP BY items.Brand;

Grüße
Thomas

Options: ReplyQuote


Subject
Views
Written By
Posted
2609
January 19, 2012 07:17AM
1457
January 19, 2012 12:59PM
1525
January 20, 2012 05:33AM
1739
January 20, 2012 06:10AM
1467
January 20, 2012 07:06AM
Re: Performance bei SELECT
1480
January 20, 2012 12:11PM
1443
January 25, 2012 04:11AM
1307
January 25, 2012 04:24AM
1361
January 25, 2012 04:30AM
1289
January 25, 2012 04:49AM
1124
January 25, 2012 06:05AM
1411
January 25, 2012 06:37AM
1389
January 25, 2012 07:46AM
1467
January 26, 2012 12:57AM
1366
January 25, 2012 11:11PM
1240
January 25, 2012 11:50PM
1149
January 27, 2012 08:27AM
1541
January 27, 2012 06:21AM
1380
February 02, 2012 10:06PM
1089
February 03, 2012 05:34AM
1347
February 03, 2012 02:04PM
1277
February 08, 2012 09:52PM
1321
February 09, 2012 08:41AM
1233
February 10, 2012 02:03AM
1482
February 10, 2012 02:52AM
1378
February 10, 2012 04:51AM
1343
February 09, 2012 11:58PM


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.