A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

LINKING TABLES



 
 
Thread Tools Display Modes
  #1  
Old March 24th, 2005, 09:22 PM
Gilberto Lawas via AccessMonster.com
external usenet poster
 
Posts: n/a
Default LINKING TABLES

I'm so close.

I've got a table full of parts that I have to marry up to table full of
model numbers.

I've gotten the two to link Via

SELECT [Price List].ID, [Price List].PrtNum, [Price List].Nomen, [Price
List].[Prod Line], [Price List].[U/I], [Price List].[Price Code], [Price
List].[Retail Price], [Price List].[Standard Price], [Price List].[U/P],
[Price List].Cat, [Price List].[Item Name], [Price List].Make, [Price List]
..Details, MdlLst.Models
FROM [Price List] LEFT JOIN MdlLst ON [Price List].MdlLst_ID=MdlLst.ID;

My only problem is that it seems I can only choose one model number per
part, when I actually need to assign as many as 30 model numbers to each
part.

I am truly a novice in WAY over my head here. Can someone help me out.

r/s
Treading Water

--
Message posted via http://www.accessmonster.com
  #2  
Old March 24th, 2005, 09:24 PM
Gilberto Lawas via AccessMonster.com
external usenet poster
 
Posts: n/a
Default

SELECT MdlLst.ID AS xyz_ID_xyz, MdlLst.Models AS xyz_DispExpr_xyz,
MdlLst.Models AS Expr1
FROM MdlLst
ORDER BY MdlLst.Models;

This is how I got them to link. I added the wrong code last time.

Sorry

--
Message posted via http://www.accessmonster.com
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Linking tables to spreadsheets W M General Discussion 2 February 8th, 2005 03:31 PM
Linking Split Tables Chris General Discussion 2 February 7th, 2005 05:54 PM
Access 2002 Linking Oracle Tables Donna Ferreira General Discussion 1 January 7th, 2005 02:08 AM
Question about linking tables Heather Database Design 2 August 10th, 2004 07:21 PM
Linking Tables in External Database - Programatically Karen B Database Design 1 June 9th, 2004 12:41 AM


All times are GMT +1. The time now is 01:59 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.