Please can I have some advice, I have two tables in my database Users and Sales, I have successfully created a login system that creates a user and inserts user details (id, username, hash, salt) into the User table.
My question is best way to insert and update sales?
Do i when inserting a new user into Users I would also Insert their username into the Sales tables, and use update scripts when adding new sales?
I am thinking to have username and then all my sales types in the Sales table.