Creating Tables with the same table names from other databases doesn’t have any bad effects

MySQLphpmyadminweb serverWordpress

I have a WordPress website and I cloned it to another website(domain) using a plugin called Duplicator. So in the backend, phpMyAdmin, I've two different databases but all the tables in both databases have the same names.

enter image description here

I just want to make sure that this does not have any kind of bad effects.

Best Answer

No problem.

USE mumer_watches;
SELECT ... FROM wp58_posts

will refer, unambiguously, to the table mumer_watches.wp58_posts. Ditto for

SELECT ... FROM mumer_watches.wp58_posts

Assuming this is WordPress, well, that's the way it works.