Is it possible to run the same query across multiple databases?
Here's my use case. I have many databases with the same schema. I would like to see how many rows each has in its 'applications' table. So I want to run select count(*) from applications;
across every database.
Does anyone know of a way to do that?
TIA!