so I'm learning SQL using the sample database Adventureworks and we've been given a couple of questions and with the correct number of rows so we will know if our queries are correct or not. I'm having trouble finding all the store names in the database.
Select name from Sales.Store;
Returns 701 rows but the correct answer is 1000 So my question is where can I find the other 299 store names. Is there another table I have to join?