2020-12-15, 02:31 PM
(2020-12-15, 01:13 PM)Epureanu Wrote: Hi, I am using a mysql saving system, that basically creates a enumerator with variables, but natively they are all saved into one table. I tried to just put a ", 2ndtablename" into the saving and loading query, but I had a feeling that it would save those variables both in the main table and the secondary. I need to save certain variables ONLY to second table. Is there any way on how to do this without running a new query for each table? Thanks!
If I understand your question right, you want to update data in two tables within one query? I don't think that's possible. You have to create seperate queries in order to update two tables of a database.