0
votes
1answer
37 views

How to get the sum of a created column from a joined table? SQL / C#

In ASP.NET / C#, I am working with two tables; Cart_LineItems and Products. I have joined the two tables and created a new column called "Extension" that has multiplied the "Products.UnitPrice" times ...
0
votes
2answers
71 views

SQL SUM top 5 values then JOIN results

I want to return the top 5 most voted items, sorted by vote count. I suppose the best way to do it would be to sum each row's votes_up and votes_down, then take the top 5 of those and join it with the ...
1
vote
2answers
39 views

MySQL: How do I select two fields from table, and total of amount columns in two related tables?

I have three tables: Project PurchaseA PurchaseB Schema of Project: id | user_id | title | description | create_date Schema of PurchaseA: id | project_id | amount | create_date Schema of ...
0
votes
1answer
66 views

SQL Multi-Table Join with SUM

Hi I'm a beginner with SQL and have a problem. I have the following 5 tables: Branch (Name, City), Employee (EmpNo, Name, Branch), Customer (CustNo, Name, EmpNo), AccountDetails (AccNo, CustNo), ...
2
votes
1answer
55 views

cumulative sum over outer joined table with null values

I have a table with 2 date columns which represent the creation and closing of a JIRA item respectively. For a report I need to get the number of created and closed items per date, and cumulative. ...
0
votes
1answer
36 views

Getting data from multiple tables and performing a calculation

Basically I have 3 tables, a product table that contains the id, type and price, a order table that contains id, customer id and a process table that contains an order_id, aircraft id (both join to ...
0
votes
1answer
50 views

Join query with multiple tables

Below is my query, and what i do is: 1) from the ADV_CAMP table i am taking the id of ADV_PACK; its table's id is stored in VIEWCAMP table. These are relations between the tables. The total ...
0
votes
2answers
58 views

SQL Join Help - Sum and Apply Filter to Tables Before Join

I have a Stock View (that lists all the individual pieces of stock and the stock date) and a Sales View (that lists all of the sales and the date the sale occurred). Stock View: ...
0
votes
1answer
52 views

SQL SUM error (Sums and multiplies)

I've got two tables similar to these: TABLE1 PC Date Num Name ID 8901 01/03/2013 5099 AAA 11 8901 01/03/2013 5099 AAA 11 8901 01/03/2013 5099 AAA 11 8901 02/03/2013 5099 AAA 12 ...
0
votes
2answers
55 views

generate_series() not working as expected with sum in PostgreSQL

I have some table called classification that contains classification_indicator_id. I need to sum this ID and put in 1 day series. I need to add around 20 columns (with another ...
-2
votes
1answer
53 views

SUM with join 3 tables

I have these tables: Hraci: IDHrace (int) Jmeno (varchar) Ucast_Zapas: ID_Hrace_zapas (int) branky (int) Zapas: ID_zapas (int) kategorie_zapas (int) Kategorie: ...
0
votes
1answer
80 views

MYSQL Inner join with select statement

Right now I have the following query: SELECT rm.reward_name, rm.rewardid, rc.reward_code, rc.status, rc.rewardid, rc.add_date, rc.status from rewards_codes as rc INNER JOIN ...
2
votes
2answers
60 views

Have SQL calculate the sum for an entire column - Having trouble grouping I believe

The attached picture displays the result set, and I will leave my code below - why am I not able to calculate the sum of the entire viewTotal column within each cell? I want each cell underneath the ...
-1
votes
6answers
296 views

MySQL Join two tables count and sum from second table

I have tow tables: dealers with some fields and primary key id and inquiries with following fields id dealer_id costs There are several items in inquiries for every dealer and i have to count them ...
0
votes
1answer
64 views

Incorrect SUM when I JOIN another table

I am trying to apply discounts to various totals. Each discount has its own discount code so I want to apply the code to its equivalent total. But sometimes this code can appear more than once. If so, ...
0
votes
2answers
49 views

sql for finding sum for each unique timestamp

Unfortunately, i've been out of the database game for almost 2 years, so i've lost some of my knowledge and am trying to get it back. I need to get the total of all rows in column A that have an ...
3
votes
3answers
34 views

SUM() from a multi-part JOIN

SELECT SUM(t.OptLevel) + SUM(o.ReqLevel1) + SUM(b.nOptValue) FROM _Inventory AS i LEFT JOIN _Items AS t ON t.ID64 = i.ItemID LEFT JOIN _RefObjCommon AS o ON o.ID = t.RefItemID ...
1
vote
0answers
84 views

SQL group values from multiple tables

I have tried for a long time to group the results of an outer join between two tables but i have had no luck. Using the code below I can get a correct output of the new business rate for each ...
1
vote
3answers
50 views

MYSQL - Using SUM with JOIN

Ok, so I have 4 tables. A users table with columns id and name. A groups table with columns id, name and owner. A items table with columns group and content. A content table with columns id, name ...
0
votes
2answers
62 views

Need to join and sum on sql tables

I am trying to learn Microsoft SQL Server and I'm trying to figure out how I can do the following. I have two tables: users id fname lname username 111 kely dike kdike 222 hana sho ...
0
votes
1answer
105 views

Using SUM with multiple joins in mysql

I've been looking for a solution to this, there's plenty of similar questions but none have any proper answers that helped me solve the problem. First up, my questions/problem: I want to sum and ...
0
votes
1answer
184 views

calculating gpa sql

to calculate SGPA of a students in table the formula is sum of 3*gradepoint of every course registered by a specific student in specific semester and dividing this sum by no.of courses. i am having a ...
-2
votes
2answers
89 views

MySQL SUM FROM Two table with wrong result [closed]

I have problem on specify the SUM of money(price) from two table . Problem on result with wrong SUM result. My Query : SELECT SUM(up2.price + uf1.price) AS TotalCredit FROM user_faktorha AS uf1, ...
1
vote
1answer
118 views

MySQL sum from two joined tables and multiple rows - need to bring out total or all rows

I have the following query which works fine when bringing out the total price of each order (thanks to the stackoverflow community): SELECT sum((ordered_items.price + ordered_items.vat) * ...
0
votes
3answers
111 views

MySQL sum from two joined tables and multiple rows

I am having a problem with the following query: SELECT sum(((ordered_items.price + ordered_items.vat) * ordered_items.qty) + orders.postage_price + orders.postage_vat) as total_price FROM orders JOIN ...
0
votes
2answers
260 views

SQL Server multiple database join and sum

I have multiple databases all containing the same structure but not the same content, A001, A002, A003, A004....A020 what is the quickest way to reformulate the query in a short & convenient way ...
1
vote
3answers
94 views

Multiple Left Joins - how to?

I have a Rails app running at Heroku, where I'm trying to calculate the rank (position) of a user to a highscore list. The app is a place for the users to bet each other and the can start the wager ...
0
votes
1answer
104 views

mysql sum() on a joined subquery is returning an unexpected total

This SQL fiddle illustrates the problem I'm having. As a background: I've got Jobs, Elements, Role-hours and Rates. A Job can consist of several Elements. An Element (usually) consists of one or more ...
0
votes
2answers
93 views

Sum of distinc rows after a 1-many table join

I have 2 tables that I am joining. Table 1 has 1-many relationship with table 2. That is, table 2 can return multiple rows for a single row of table 1. Because of this, the records of table 1 is ...
1
vote
1answer
46 views

How to join 4 tables with specific requirements?

I have 4 tables. Procedures Name Cost Proc1 10 Proc2 20 Proc3 30 Proc4 40 MaterialsUsed NameOfTheProcedure MaterialUsed AmountOfMaterialUsed proc1 mat1 1 proc2 ...
0
votes
2answers
70 views

Mysql Querying num of comment related to article

I am trying to run a query to select the article that have the most comments related to the article id. i have a article table and a comments table the comments table has a article_id field that ...
0
votes
2answers
53 views

Sum when object might be Nil

I have the following line of code: @ranking_array = User.joins(:bets, :choices).select("users.id, sum(bets.profitloss + choices.profitloss) as total_pl").group("users.id").order("total_pl ...
1
vote
1answer
253 views

Linq Join tables, Group by date, Sum of values?

I have two tables (one-to-many). MeterReadings(0..1) and MeterReadingDetails(*) I want to join this tables and gorup by date. Date field is in MeterReadings and Others are in MeterReadingDetails. ...
1
vote
2answers
96 views

Sum of multiple tables in SQL

I think what I want to do is fairly straightforward but the data I get back varies greatly. select sum(cast(vi.qty - vi.unredeemed as bigint)) from red.dbo.setup vc full join red.dbo.test bt ...
0
votes
1answer
53 views

Subquery join and total dilemma again

So here is my latest endeaver .. trying to add the result of sub queries to get another field or total... but sumhow this simple syntax doesn't seem to work.. can somebody please point me to the right ...
0
votes
2answers
133 views

SQL wrong sum when using join [closed]

I have this query: SELECT BLI.EmpID, ShortEmployees.EmpName1 AS EmpName, SUM(BLI.FinalValue) AS Total FROM BLI INNER JOIN BSR ON BLI.BLID = BSR.BLID INNER JOIN ShortEmployees ON BLI.EmpID ...
0
votes
3answers
114 views

MySQL group by where day <= x

I need some help figuring out the correct SQL statement. If've got a table with the following structure: id, product_id, units, timestamp I wan't a list which contains the all over units per day. A ...
2
votes
2answers
140 views

Query with multiple joins and sum function giving wrong total or sum

Posted query retrieving all the relevant fields but the SUM(af_py_commission) function causing problem as in and it simply add an extra zero at the end and then on the right end. e.g. if the answer ...
0
votes
2answers
192 views

Multiple Grouping in mysql queries. Group_concat? Group_by? Inner joins? Where am I going wrong?

Im finding trouble finding a similar example to what Im trying to achieve. I have 3 tables. From one table I want to get the linking ID number. From another table I want to find the same ID's and add ...
5
votes
3answers
133 views

Incorrect sum when I join a second table

This is the first time I ask for your help, Actually I have to create a query, and did a similar example for it. I have two tables, Report (ReportID, Date, headCount) Production(ProdID, ReportID, ...
4
votes
1answer
121 views

mySQL SUM and COUNT issue, some values on join get doubled

i have an issue with this mysql query. basically i need to join one table (CostiFissi, a table with costs) with a table with payments (Pagamenti), grouping them by cost id (CostiFissi_IdCostoFisso) ...
0
votes
1answer
57 views

How to sort a JOIN query between 2 tables with the corresponding SUM of a column in a 3rd table?

I have the following simple query which works and does what I want: SELECT Table1.*, Table2.* FROM Table1, Table2 WHERE Table1.Col1 ...
1
vote
1answer
183 views

MySQL getting sum of tables with the same id

I have four tables person,loan,ca,payments I would like to get the sum of all payments amounts and cash advance amounts which has the same ID as the loan joined with a person from a specific date. ...
1
vote
3answers
892 views

mysql - group by multiple columns and sum

I'm having some trouble figuring out the following mysql query. This is meant to be a sort of time tracking where users have certain rates depending on the task they did. And I require to have a ...
1
vote
1answer
349 views

Fuelphp SUM in join issue

I'm having a bit of a problem with join SUM in fuel php. When I use it like this $query = DB::select( 'stream_post.*', 'SUM(stream_comment.comment_stream_id)' ...
1
vote
3answers
530 views

MySQL JOIN with multiple tables and SUMS

I am trying to create a query that will take information out of four tables for a billing system that I am creating. I have the following tables: Table Invoice InvoiceID (PK) ClientID Date Status ...
0
votes
0answers
75 views

left joins cause Wrong Sum

Suppl, fields: (Code_name, Code_name_arch, Tasknum, Pki_num, Group_eng, Name, Descr, Cost, Quan, shop) Maker, fields : (Code_maker, Code_maker_arch, Code_name, provider) Arrival, fields: (Code_arr, ...
9
votes
2answers
186 views

MySQL joining tables group by sum issue

I have problem with joining tables, here are example tables: Table A: ( 30 rows) ╔════╦════════════╦═════════════╗ ║ ID ║ Name ║ Description ║ ╠════╬════════════╬═════════════╣ ║ 1 ║ Type ...
1
vote
1answer
597 views

Doing a LINQ join, then group by, then a sum on two different columns

I am using LINQ to SQL in a project and I am having an issue doing both a join and a group by to do a comparison between the two fields that are in each table. Here is what my query looks like: var ...
3
votes
3answers
147 views

Sum across joined tables

Consider the following scenario: a user has one or more (bank) accounts. The the historical changes in the accounts' balances are tracked in a table. I would like to display a history of the user's ...

1 2 3