|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
Sum on 2 tables
Hi,
I want to retreive the sum of 2 numbers that are located in 2 different tables. Both the field names are the same, from the tables i wish to retreive the data from: Something like this: Table: ocd_campaigns_cost modelid total 5 350 Table: ocd_campaigns_cost_tot modelid total 5 121238 I wrote this query (asp): SQL_SUM = "SELECT [ocd_campaigns_cost.totale kosten],SUM([ocd_campaigns_cost.totale kosten]) - SUM([ocd_campaigns_cost_tot.totale kosten]) AS SUM_KOSTEN FROM ocd_campaigns_cost LEFT JOIN ocd_campaigns_cost_tot ON [totale kosten] = [ocd_campaigns_cost_tot.totale kosten] WHERE ocd_campaigns_cost_tot.modelID = " & request("ModelID") & " AND ocd_campaigns_cost.modelID = " & request("ModelID") & "" But all it does is return: Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC SQL Server Driver][SQL Server]Ambiguous column name 'totale kosten'. /OCD/campaign/graph.asp, line 84 Can you guys please help me? |
|
#2
|
||||
|
||||
|
This part of your SQL statement:
FROM ocd_campaigns_cost LEFT JOIN ocd_campaigns_cost_tot ON [totale kosten] = [ocd_campaigns_cost_tot.totale kosten] should be (my changes in bold font): FROM ocd_campaigns_cost LEFT JOIN ocd_campaigns_cost_tot ON [ocd_campaigns_cost.totale kosten] = [ocd_campaigns_cost_tot.totale kosten]
__________________
Up the Irons What Would Jimi Do? Smash amps. Burn guitar. Take the groupies home. "Death Before Dishonour, my Friends!!" - Bruce D ickinson, Iron Maiden Aug 20, 2005 @ OzzFest Down with Sharon Osbourne Puzzle of the Month solved by sizeablegrin, etienne141 and L7Sqr, superior C/C++ programmers of the month |
![]() |
| Viewing: Dev Shed Forums > Databases > MS SQL Development > Sum on 2 tables |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|