MySQL Forums
Forum List  »  InnoDB

Join seems to return one row twice
Posted by: Don Ireland
Date: December 19, 2015 06:36PM

My query is returning the same row twice. Any idea why and how I can get it to only do so once?

SELECT txn.id, txn.ref, txn.date, txn.payee, txn.amount, txn.memo, txn.parentID, txn.catID, txn.acctID, txn.children, bal.amount runningBal
FROM transactions txn
INNER JOIN txnRunningBal bal ON txn.acctID = bal.acctID
LIMIT 0 , 30

This is what the query returns:
id ref date payee amount memo parentID catID acctID children runningBal

92 NULL 2015-12-10 asfa 10 NULL 0 4 1 NULL 10
93 NULL 2015-12-19 asdfasf 5 NULL 0 1 5 NULL 5
92 NULL 2015-12-10 asfa 10 NULL 0 4 1 NULL 15

Don

Options: ReplyQuote


Subject
Views
Written By
Posted
Join seems to return one row twice
1593
December 19, 2015 06:36PM
866
December 19, 2015 09:08PM
626
December 19, 2015 11:07PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.