Hi,
Is it possible to have two and more primary/automatic-adding unique IDs per one table in MySQL? For example:
Primary Key (INT,11);shop_id;invoice_id
1;200;2001
1;201;2011
2;200;2002
2;201;2012
Is it possible to set this to MySQL table ? -> So there are more primary keys for some other value in the table.. ?
I am looking for more auto-increments in one table.