I have two tables. The first table is a users table and the second table is a searches table.
The first table stores information about the user and each user only has 1 row of information.
The second table makes a record each time a user runs a search, and could potentially have many records associated with them.
I would like to build a query that selects the user's name from the users table and the most recent search date from the searches table.
Could someone help me with this? Thanks.