I am working on making a new sqlite database. Obviously for a number of reasons, structure and organization is important.
I have an existing database that is everything that I need, except for one column. So I duplicated the original db, and would like to just swap out that one column with new data from a different column in a different table in the db?
Can I do that? Which query is going to let me do that?
The join query just joins temporarily, right? If I need it to physically make the change in the db structure, do I use update?
I don't have tremendous amounts of experience with SQL queries, so any help here would be appreciated very much!