Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Query help needed!

Status
Not open for further replies.

Tursas

Technical User
Sep 4, 2004
4
FI
I have datebase where are following tables:

Products
Users (UserID)

Product table includes following columns:

ProductID
InsertDate
InsertBy (
ChangeDate
ChangeBy
ProductName
ProductDescription

How can I make a query that comes up with a following result:

ProductName Inserted By Changed By Description
=========== =========== ========== ===========
Car Peter Mark V8 engine

Please help me with this one.

Thank you!

tursas



 
I got this far.........

SELECT *
FROM product, users
WHERE product.insertby=users.userid

tursas
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top