Jump to content

help creating multi-table view


aebstract

Recommended Posts

CREATE VIEW totals AS
SELECT A1.ID SOID, SUM(A2.TOTALPRICE) TOTAL, SUM(A3.AMOUNT) PAYED
FROM SO A1, SOITEM A2, POSTRANSACTION A3
WHERE A1.ID = A2.SOID
AND A1.ID = A3.SOID
GROUP BY A1.ID

 

This creates a view that is close to what I need but not quite right. It is suppose to take all rows from the table soitem and add the totalprice column together as well as do the same thing under postransaction table with the amount column. The TOTAL column ends up being the correct amount, the total of all the lines where soitem.soid match so.id. The PAYED total ends up being a number of (TOTAL x # of rows in soitem where soitem.soid and so.id match). So a total of 732.07 from the lines (594.81 and 137.26) result in a PAYED amount of 1464.14. Here is the thing, for that order there is one line in postransaction with the correct soid and its total is 732.07 for column amount. That is problem 1, problem 2 is in my query and what's wrong is that I need to show the PAYED as 0.0 if there are no results in the postransaction table with the corresponding soid. Right now if there isn't a result in that table, it just doesn't add it to my view. Hope someone knows what I'm trying to do and it's an easy fix!  :shrug:

Link to comment
Share on other sites

Hi

 

Your 2nd problem is because you are doing an inner join rather than an outer join.

 

Solution might be (not tested)

 

CREATE VIEW totals AS
SELECT A1.ID SOID, SUM(A2.TOTALPRICE) TOTAL, SUM(A3.AMOUNT) PAYED
FROM SO A1
LEFT OUTER JOIN (SELECT SOID, SUM(TOTALPRICE) AS totPrice FROM SOITEM GROUP BY SOID) A2
ON A1.ID = A2.SOID
LEFT OUTER JOIN (SELECT SOID, SUM(AMOUNT) AS totAmnt FROM POSTRANSACTION GROUP BY SOID) A3
ON A1.ID = A3.SOID

 

All the best

 

Keith

Link to comment
Share on other sites

Hi

 

Forgot to change the sum functions:-

 

CREATE VIEW totals AS
SELECT A1.ID SOID, totPrice AS TOTAL, totAmnt AS  PAYED
FROM SO A1
LEFT OUTER JOIN (SELECT SOID, SUM(TOTALPRICE) AS totPrice FROM SOITEM GROUP BY SOID) A2
ON A1.ID = A2.SOID
LEFT OUTER JOIN (SELECT SOID, SUM(AMOUNT) AS totAmnt FROM POSTRANSACTION GROUP BY SOID) A3
ON A1.ID = A3.SOID

 

All the best

 

Keith

Link to comment
Share on other sites

This is odd, but with that view created, when I try and pull information from that table I get this error:

 

Error code 335544352, SQL state HY000: GDS Exception. 335544352. no permission for read/select access to TABLE TOTALS2

Line 1, column 1

 

Execution finished after 0 s, 1 error(s) occurred.

 

Wondering if this is strictly a software issue or something that can be solved in the query? Also is there a way for me to change the view created so that blank spaces show up as 0.0?

 

 

Note: The error shows when I simply run "SELECT * FROM TOTALS2"

Link to comment
Share on other sites

Hi

 

No, both the view and a normal query read the table(s). The view is possibly safer and possibly easier for MySQL to optimise.

 

Just take the SELECT from the view and try running it directly (in phpmyadmin, or whatever MySQL tool you are using). Hopefully it might give you a more useful error.

 

All the best

 

Keith

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.