Access 2003 Query

  • Thread starter Michelle Whitfield
  • Start date
K

KARL DEWEY

The way you posed your question there are different solution based on how you
really mean it.
SELECT [Owner Name], [Joint Owner Name]
FROM YourTable
WHERE [Owner Name] = [Enter last name] AND [Joint Owner Name] = [Enter last
name];

SELECT [Owner Name], [Joint Owner Name]
FROM YourTable
WHERE [Owner Name] = [Enter last name] OR [Joint Owner Name] = [Enter last
name];

SELECT [Owner Name], [Joint Owner Name]
FROM YourTable
WHERE [Owner Name] = [Enter last name];

SELECT [Owner Name], [Joint Owner Name]
FROM YourTable
WHERE [Joint Owner Name] = [Enter last name];
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top