So I have two databases that have separate pieces of information that I need together. Instead of running queries on each database I was told that I can join the two databases together so that I can declare variables from both databases without worrying about which database was specified or what not. Here's what I have so far
$query = "select * from quotes WHERE qSymbol='{$strSymbol}' ORDER BY qQuoteDateTime DESC LIMIT 15";
I want to have all fields in the quotes database as well as all database in the symbols database to be accessible without having to specifically call each database. How can I add on to this code to let me do that?
Thank you all!