I want to have two tables so I can move old records into a second table so I keep the main table small but still want to be able to link to both tables using the one int Primary Key.
eg: (I have simplified this example, from what is in my real tables) I am keeping trace of sessions and want to move expired sessions into an Expired_Sessions table but I am also linking sessions to log tables like a Login_Attempts table and I don't want to break the links to those tables.
Sessions
--------------------
PKey | int
Session_ID | varchar
Expired_Sessions
--------------------
PKey | int
Session_ID | varchar
Login_Attempts
--------------------
Session_FKey | int
Count | int
I did think of two ways to do this that would work but I thought there should be a better way to do this?
One: storing a primary key counter in my sys_constants table and incrementing it every time I add a record. or
Two: adding another table that links the Sessions table primary key and the Expired sessions primary key to a third primary key and then using the third primary key to link to my log tables.