|
-
Sql problems in large databases (Help)????
I have a large database, Where I have two tables claims and invoices. In invoice table when I run the query
select sum(amount) from invoices.
Gives me value of 207859507
However when I join two tables and group then by one variable such as mileage in claim table
SELECT c.mileage, SUM(i.amount) AS amount
FROM claims c
INNER JOIN invoices i
ON i.ID = c.ID AND i.accident_date = c.accident_date
GROUP BY mileage
it gives me a greater value i.e. 214110863...
But conceptually the join must have smaller value then the other query
Regards
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|
Bookmarks