I'm trying to run multiple databases at the same time and query data to and from them.
I successfully created these databases using the following query:
CREATE DATABASE databasename1;
CREATE DATABASE databasename2;
But I am now uncertain about how I...