Go Back   CodingForums.com > :: Server side development > Other server side languages/ issues > ColdFusion

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-12-2007, 04:03 PM   PM User | #1
crono.Serge
New Coder

 
Join Date: Mar 2006
Posts: 76
Thanks: 0
Thanked 0 Times in 0 Posts
crono.Serge is an unknown quantity at this point
Question Duplicate entries

Hi Guys,

I was wondering if there's anything wrong with this code:

Code:
<cfquery datasource="SSHInven" name="vAll">
SELECT  
	a.pType, a.sOnHand, a.DateModified,
	b.wQuantity,
	c.mcQuantity
 FROM iParts a, iWSpares b, iMSpares c
</cfquery>
I want to be able to select those particular fields from my DB, but, when I <cfoutput> it keeps repeating all seven items I have in the iParts table (I'm testing with that first to see what's going on). The <cfoutput> tag I have looks like:

Code:
<cfoutput query="vAll">
#pType# | #sOnHand# <br />
</cfoutput>
And, like I said before, it just keeps repeating that same info about 7 times. Any particular reason why???

Thanks in advance!!
crono.Serge is offline   Reply With Quote
Old 08-08-2007, 12:07 AM   PM User | #2
athanasiusrc
New Coder

 
Join Date: Aug 2007
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
athanasiusrc is an unknown quantity at this point
You need to make sure that your tables are properly joined in the query.

Something like:
SELECT
a.pType, a.sOnHand, a.DateModified,
b.wQuantity,
c.mcQuantity
FROM iParts a
join
iWSpares b
on
a.primary_key = b.foreignkey
join
iMSpares c
on
a.primary_key = c.foreignkey
athanasiusrc is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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


Advertisement
Log in to turn off these ads.