Which SQL workflow creates a database and then confirms that the server recognizes it?
Run CREATE DATABASE Hello_World; followed by SHOW DATABASES;.
CREATE DATABASE Hello_World;
SHOW DATABASES;
Run USE Hello_World; followed by SHOW TABLES; before the database exists.
USE Hello_World;
SHOW TABLES;
Run SHOW STATUS; and look for a row named Hello_World.
SHOW STATUS;
Run SELECT VERSION(); and interpret the server version as the database name.
SELECT VERSION();