Hey,
I am creating a application where I need to keep all the users, no matter what. So, I have created 5 tables.
active_users
deleted_users
denied_users
expired_users
pending_users
All of which, have different status'. I am just wondering if this is the best and most efficient way of doing it. I am just thinking that many people will be using it, so I might as well keep the active users (obviously, the busiest) as clean as posible.
Any thoughts? Also, when moving an entire field, any ideas on the best way of MOVING those fields from table to table? (Any shortcuts). I mean, beyond just doing a select/insert/delete. Or a insert (with sub-select)/delete.
Any comments are appreciated,
-Travis