I have an online store with table 'Orders' and I want to clone/copy this table with every record to a new one - but the problem is that each moment table 'Orders' is being updated by customers... so simplest solution 'INSERT (...) SELECT (...)' wont work (cause during this time, new records will be added)
Has anyone ever tried it ? Does anyone have any idea how to achieve it ?