Tag: mysql

  • MySQL table with automatic partition adding

    One of the advantages of using partitions in MySQL is that it speeds up queries, especially when large data volumes are in play. What happens when data grows and you surely don’t want to add new partitions manually? Well, this is where stored procedures and triggers come in place. First things first, you cannot partition…