I think this is more clear than my last version:
I have a table that already has a PK field starting with 1 that is already set for auto-increment. I would like to add a new field that does not start with 1, instead starting with an arbitrary number (think invoice number) and also automatically increments. Apparently, you can only have one col per table that has that attribute. Is there a way, in one query operation, to force MySQL to increment the last (or maximum) value of that field by 1 as the value for that col in the new row?
Update: I just ended up using the id column as a base for the new value I needed, and deleted the non-essential column. My question never got answered, really, but I did take that as a hint to rethink the approach so thanks!