Purchase Solution

Query in Access

Not what you're looking for?

Ask Custom Question

Please see attached file and using LAST_NAME and FIRST NAME in Table_1 to find the matching order_number and pp_number in Table_2 and Table_3. The query should write in such as (sql) SELECT what columns FROM WHAT tables WHERE something or INNER JOIN. The query should run to get the result. When you finish please attach the mdb file to see how you wrote the codes.

See attached file for full problem description.

Attachments
Purchase this Solution

Solution Summary

The solution writes a query in MS Access using tables 1-3 (see attachment). Concern to the problem are also mentioned.

Solution Preview

SELECT Table_1.ORDER_NUMBER, Table_2.PP_NUMBER
FROM (Table_1 INNER JOIN Table_2 ON ...

Purchase this Solution


Free BrainMass Quizzes
C++ Operators

This quiz tests a student's knowledge about C++ operators.

Excel Introductory Quiz

This quiz tests your knowledge of basics of MS-Excel.

Javscript Basics

Quiz on basics of javascript programming language.

C# variables and classes

This quiz contains questions about C# classes and variables.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.