In MySQL I want to clone certain databases. Is there such a thing as a
CREATE DATABASE LIKE
command?
I know
There is no such command.
But you can create a backup (SQL file) of your database, and then restore all objects in the new database.
Also, you can use GUI tools in dbForge Studio for MySQL (free express edition) - Backup or restore a database. It will help you quickly recreate database and its contents.