As part of the management application we're making, I'm trying to optimize as much PHP and MySQL code I can, but I have a concern...
Actually, our data scheme for storing a client order is the following:
year -> DATE
order_id -> INT(11)
order_line_id -> INT(11)
What we basically do is to reset the order_id field each year (legally, and for accountability purposes, you can either reset your id's or just let them grow, although account managers usually prefer the first option rather than the second one), and the same goes for order line id's, so each order has its line id's reset for each consecutive order.
All of this, however, is done by hand. This is far from ideal and I would like to do it in the properTM way, which would be automating the process and handing reset control over to MySQL.
But the question is... how? How do I tell MySQL to automatically reset the AUTO_INCREMENT field for order_line_id with each new order_id and to automatically reset the AUTO_INCREMENT field for order_id with each new year?