Private Proxies – Buy Cheap Private Elite USA Proxy + 50% Discount!Private Proxies – Buy Cheap Private Elite USA Proxy + 50% Discount!Private Proxies – Buy Cheap Private Elite USA Proxy + 50% Discount!Private Proxies – Buy Cheap Private Elite USA Proxy + 50% Discount!
    0
  •   was successfully added to your cart.
  • Home
  • Buy proxies
  • Extra features
  • Help
  • Contact
  • Login
  • 50% OFF
    BUY NOW!
    50
    PROXIES
    $19
    --------------------
    BUY NOW!
    BUY NOW!
    BUY NOW!
    BUY NOW!
    BUY NOW!
    $29
    $49
    $109
    $179
    $299
    --------------------
    --------------------
    --------------------
    --------------------
    --------------------
    PROXIES
    PROXIES
    PROXIES
    PROXIES
    PROXIES
    100
    200
    500
    1,000
    2,000
    TOP SELLER
    BEST VALUE
    For All Private Proxies!

I want to optimize my MySQL view v_booking. At the moment I am wondering about the following issue:

My queries

Query 1 is slow (47,48 sec):

SELECT MAX(Snapshot_Nummer) FROM v_booking; 

Query 2 is fast (0,04 sec):

SELECT MAX(Snapshot_Nummer) FROM snapshot_data; 

Query 3 is fast (0,03 sec):

SELECT MAX(Snapshot_Nummer) FROM snapshot_booking; 

Query 4 is fast (0,03 sec):

SELECT Snapshot_Nummer FROM v_booking ORDER BY Snapshot_Nummer DESC LIMIT 1; 

In my case, all 4 queries are delivering the same result.

My question

Is there any way to execute the MAX() function fast and directly by using the MySQL view?


COUNT(*) of the 3 tables:

  1. snapshot_data: 5213
  2. snapshot_booking: 4113837
  3. booking_data: 1484

CREATE TABLE

 CREATE TABLE `snapshot_data` (   `Snapshot_Nummer` int(11) NOT NULL AUTO_INCREMENT,   `Snapshot_Zeitpunkt` datetime DEFAULT NULL,   PRIMARY KEY (`Snapshot_Nummer`) ) ENGINE=InnoDB AUTO_INCREMENT=5214 DEFAULT CHARSET=utf8 
 CREATE TABLE `snapshot_booking` (   `Magic_PK` int(11) NOT NULL AUTO_INCREMENT,   `Snapshot_Nummer` int(11) NOT NULL,   `Action_Link` int(11) NOT NULL,   `bookingState` int(11) DEFAULT '0',   PRIMARY KEY (`Magic_PK`),   KEY `Snapshot_Nummer` (`Snapshot_Nummer`),   KEY `Action_Link` (`Action_Link`),   CONSTRAINT `snapshot_booking_ibfk_1` FOREIGN KEY (`Snapshot_Nummer`) REFERENCES `snapshot_data` (`Snapshot_Nummer`),   CONSTRAINT `snapshot_booking_ibfk_2` FOREIGN KEY (`Action_Link`) REFERENCES `booking_data` (`Action_Link`) ) ENGINE=InnoDB AUTO_INCREMENT=4113838 DEFAULT CHARSET=utf8 
 CREATE TABLE `booking_data` (   `Action_Link` int(11) NOT NULL,   `FaMaId` int(11) DEFAULT NULL,   `BuchId` int(11) DEFAULT NULL,   `MadaId` int(11) DEFAULT NULL,   `StationId` int(11) DEFAULT NULL,   `BOId` int(11) DEFAULT NULL,   `BuchungCode` int(11) DEFAULT NULL,   `DatumVon` datetime DEFAULT NULL,   `DatumBis` datetime DEFAULT NULL,   `BenutztVon` datetime DEFAULT NULL,   `BenutztBis` datetime DEFAULT NULL,   `BenutztKM` int(11) DEFAULT NULL,   `StornoKZ` tinyint(1) DEFAULT NULL,   `VorgaengerBuchId` int(11) DEFAULT NULL,   `AngelegtDatum` datetime DEFAULT NULL,   `AutostornoDatum` datetime DEFAULT NULL,   `AenderungDatumKunde` datetime DEFAULT NULL,   `WunschId` int(11) DEFAULT NULL,   `WagenId` int(11) DEFAULT NULL,   `Fix` tinyint(1) DEFAULT NULL,   `FBNr` int(11) DEFAULT NULL,   PRIMARY KEY (`Action_Link`),   KEY `storno_index` (`StornoKZ`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 

CREATE VIEW

 CREATE      ALGORITHM = UNDEFINED      DEFINER = `car`@`%`      SQL SECURITY DEFINER VIEW `v_booking` AS     SELECT          `booking_data`.`FaMaId` AS `FaMaId`,         `booking_data`.`BuchId` AS `BuchId`,         `booking_data`.`MadaId` AS `MadaId`,         `booking_data`.`StationId` AS `StationId`,         `booking_data`.`BOId` AS `BOId`,         `booking_data`.`BuchungCode` AS `BuchungCode`,         `booking_data`.`DatumVon` AS `DatumVon`,         `booking_data`.`DatumBis` AS `DatumBis`,         `booking_data`.`BenutztVon` AS `BenutztVon`,         `booking_data`.`BenutztBis` AS `BenutztBis`,         `booking_data`.`BenutztKM` AS `BenutztKM`,         `booking_data`.`StornoKZ` AS `StornoKZ`,         `booking_data`.`VorgaengerBuchId` AS `VorgaengerBuchId`,         `booking_data`.`AngelegtDatum` AS `AngelegtDatum`,         `booking_data`.`AutostornoDatum` AS `AutostornoDatum`,         `booking_data`.`AenderungDatumKunde` AS `AenderungDatumKunde`,         `booking_data`.`WunschId` AS `WunschId`,         `snapshot_data`.`Snapshot_Nummer` AS `Snapshot_Nummer`,         `snapshot_data`.`Snapshot_Zeitpunkt` AS `Snapshot_Zeitpunkt`     FROM         ((`snapshot_booking`         JOIN `booking_data` ON ((`snapshot_booking`.`Action_Link` = `booking_data`.`Action_Link`)))         JOIN `snapshot_data` ON ((`snapshot_booking`.`Snapshot_Nummer` = `snapshot_data`.`Snapshot_Nummer`))) 

EXPLAIN SELECT

Query 1

 mysql> EXPLAIN SELECT MAX(Snapshot_Nummer) FROM v_booking; +----+-------------+------------------+------------+--------+-----------------------------+-----------------+---------+------------------------------------------+------+----------+-------------+ | id | select_type | table            | partitions | type   | possible_keys               | key             | key_len | ref                                      | rows | filtered | Extra       | +----+-------------+------------------+------------+--------+-----------------------------+-----------------+---------+------------------------------------------+------+----------+-------------+ |  1 | SIMPLE      | snapshot_data    | NULL       | index  | PRIMARY                     | PRIMARY         | 4       | NULL                                     | 5213 |   100.00 | Using index | |  1 | SIMPLE      | snapshot_booking | NULL       | ref    | Snapshot_Nummer,Action_Link | Snapshot_Nummer | 4       | carsharing.snapshot_data.Snapshot_Nummer |  797 |   100.00 | NULL        | |  1 | SIMPLE      | booking_data     | NULL       | eq_ref | PRIMARY                     | PRIMARY         | 4       | carsharing.snapshot_booking.Action_Link  |    1 |   100.00 | Using index | +----+-------------+------------------+------------+--------+-----------------------------+-----------------+---------+------------------------------------------+------+----------+-------------+ 3 rows in set, 1 warning (0,04 sec) 

Query 2

 mysql> EXPLAIN SELECT MAX(Snapshot_Nummer) FROM snapshot_data; +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+------------------------------+ | id | select_type | table | partitions | type | possible_keys | key  | key_len | ref  | rows | filtered | Extra                        | +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+------------------------------+ |  1 | SIMPLE      | NULL  | NULL       | NULL | NULL          | NULL | NULL    | NULL | NULL |     NULL | Select tables optimized away | +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+------------------------------+ 1 row in set, 1 warning (0,03 sec) 

Query 3

 mysql> EXPLAIN SELECT MAX(Snapshot_Nummer) FROM snapshot_booking; +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+------------------------------+ | id | select_type | table | partitions | type | possible_keys | key  | key_len | ref  | rows | filtered | Extra                        | +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+------------------------------+ |  1 | SIMPLE      | NULL  | NULL       | NULL | NULL          | NULL | NULL    | NULL | NULL |     NULL | Select tables optimized away | +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+------------------------------+ 1 row in set, 1 warning (0,04 sec) 

Query 4

 mysql> EXPLAIN SELECT Snapshot_Nummer FROM v_booking ORDER BY Snapshot_Nummer DESC LIMIT 1; +----+-------------+------------------+------------+--------+-----------------------------+-----------------+---------+------------------------------------------+------+----------+-------------+ | id | select_type | table            | partitions | type   | possible_keys               | key             | key_len | ref                                      | rows | filtered | Extra       | +----+-------------+------------------+------------+--------+-----------------------------+-----------------+---------+------------------------------------------+------+----------+-------------+ |  1 | SIMPLE      | snapshot_data    | NULL       | index  | PRIMARY                     | PRIMARY         | 4       | NULL                                     |    1 |   100.00 | Using index | |  1 | SIMPLE      | snapshot_booking | NULL       | ref    | Snapshot_Nummer,Action_Link | Snapshot_Nummer | 4       | carsharing.snapshot_data.Snapshot_Nummer |  797 |   100.00 | NULL        | |  1 | SIMPLE      | booking_data     | NULL       | eq_ref | PRIMARY                     | PRIMARY         | 4       | carsharing.snapshot_booking.Action_Link  |    1 |   100.00 | Using index | +----+-------------+------------------+------------+--------+-----------------------------+-----------------+---------+------------------------------------------+------+----------+-------------+ 3 rows in set, 1 warning (0,04 sec) 

INDEXES

 mysql> SHOW INDEXES FROM snapshot_data; +---------------+------------+----------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | Table         | Non_unique | Key_name | Seq_in_index | Column_name     | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | +---------------+------------+----------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | snapshot_data |          0 | PRIMARY  |            1 | Snapshot_Nummer | A         |        5213 |     NULL | NULL   |      | BTREE      |         |               | +---------------+------------+----------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ 1 row in set (0,04 sec) 
 mysql> SHOW INDEXES FROM snapshot_booking; +------------------+------------+-----------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | Table            | Non_unique | Key_name        | Seq_in_index | Column_name     | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | +------------------+------------+-----------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | snapshot_booking |          0 | PRIMARY         |            1 | Magic_PK        | A         |     3959571 |     NULL | NULL   |      | BTREE      |         |               | | snapshot_booking |          1 | Snapshot_Nummer |            1 | Snapshot_Nummer | A         |        4969 |     NULL | NULL   |      | BTREE      |         |               | | snapshot_booking |          1 | Action_Link     |            1 | Action_Link     | A         |        1405 |     NULL | NULL   |      | BTREE      |         |               | +------------------+------------+-----------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ 3 rows in set (0,03 sec) 
 mysql> SHOW INDEXES FROM booking_data; +--------------+------------+--------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | Table        | Non_unique | Key_name     | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | +--------------+------------+--------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | booking_data |          0 | PRIMARY      |            1 | Action_Link | A         |        1484 |     NULL | NULL   |      | BTREE      |         |               | | booking_data |          1 | storno_index |            1 | StornoKZ    | A         |           1 |     NULL | NULL   | YES  | BTREE      |         |               | +--------------+------------+--------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ 2 rows in set (0,03 sec) 

Thank you very much!

✓ Extra quality

ExtraProxies brings the best proxy quality for you with our private and reliable proxies

✓ Extra anonymity

Top level of anonymity and 100% safe proxies – this is what you get with every proxy package

✓ Extra speed

1,ooo mb/s proxy servers speed – we are way better than others – just enjoy our proxies!

50 proxies

$19/month

50% DISCOUNT!
$0.38 per proxy
✓ Private
✓ Elite
✓ Anonymous
Buy now

100 proxies

$29/month

50% DISCOUNT!
$0.29 per proxy
✓ Private
✓ Elite
✓ Anonymous
Buy now

200 proxies

$49/month

50% DISCOUNT!
$0.25 per proxy
✓ Private
✓ Elite
✓ Anonymous
Buy now

500 proxies

$109/month

50% DISCOUNT!
$0.22 per proxy
✓ Private
✓ Elite
✓ Anonymous
Buy now

1,000 proxies

$179/month

50% DISCOUNT!
$0.18 per proxy
✓ Private
✓ Elite
✓ Anonymous
Buy now

2,000 proxies

$299/month

50% DISCOUNT!
$0.15 per proxy
✓ Private
✓ Elite
✓ Anonymous
Buy now

USA proxy location

We offer premium quality USA private proxies – the most essential proxies you can ever want from USA

100% anonymous

Our proxies have TOP level of anonymity + Elite quality, so you are always safe and secure with your proxies

Unlimited bandwidth

Use your proxies as much as you want – we have no limits for data transfer and bandwidth, unlimited usage!

Superfast speed

Superb fast proxy servers with 1,000 mb/s speed – sit back and enjoy your lightning fast private proxies!

99,9% servers uptime

Alive and working proxies all the time – we are taking care of our servers so you can use them without any problems

No usage restrictions

You have freedom to use your proxies with every software, browser or website you want without restrictions

Perfect for SEO

We are 100% friendly with all SEO tasks as well as internet marketing – feel the power with our proxies

Big discounts

Buy more proxies and get better price – we offer various proxy packages with great deals and discounts

Premium support

We are working 24/7 to bring the best proxy experience for you – we are glad to help and assist you!

Satisfaction guarantee

24/7 premium support, free proxy activation and 100% safe payments! Best reliability private proxies for your needs!

Best Proxy Packs

  • 2,000 Private Proxies $600.00 $299.00 / month
  • 1,000 Private Proxies $360.00 $179.00 / month

Quick Links

  • More information
  • Contact us
  • Privacy Policy
  • Terms and Conditions

Like And Follow Us


Copyright ExtraProxies.com | All Rights Reserved.
  • Checkout
  • Contact
  • Help
  • Home
  • My Account
  • My Cart
  • News
  • Privacy Policy
  • Proxy features
  • Proxy packs
  • Terms and Conditions
Private Proxies – Buy Cheap Private Elite USA Proxy + 50% Discount!
    0 items