Apologies for perhaps a basic question, but I've genuinely tried my own research but I cannot even find the correct syntax for this question, and so I am not finding the solution.
I have a database with a number of tables, columns, rows etc in an online system. I have made a massive update to the system offline, and it is ready to go live this week. However, some of the tables have been altered, some new tables have been added etc, as a result of new features within the system.
My question is: Can I update my database, with the heavily altered tables, but not delete the previous information on it? For example: Say I have a table in the old system called Users, which tracks Username, and Password. But I've updated the system, and now the Users tables tracks Username, Password, Name, Age, Date of Birth, Points ... whatever, a lot more information than before.
What I want to happen, is that I update the table (and overall database) so that the new columns and tables etc appear, but I do not lose the information from the previous iteration. So I would not have to re-enter password/username etc for Users.
When I search this question, all I get is answers saying I can manually enter the new tables/columns, or mistakenly it thinks I'm asking about concatenation of values, but this is not my intention.
Ideally, I would like an IMPORT of the new database INTO the old database.
Any help would be very much appreciated.