I have a users table and a locations table.
The locations table looks like:
Location
-id
-name
I want an output that has all users, repeated for each location so like:
user1 location1
user2 location1
user3 location1
user1 location2
user2 location2
user3 location2
How can I create a SELECT query like the above?