Hi,
habe eine mysql-DB welche folgende 4 Tabellen + (primary keys) enthält:
industry (industry_sector_id)
companies (company_id (autoincrement))
balance_sheet (company_id, year)
profit_loss (company_id, year)
Möchte den jährlichen ROI berechnen einer Company mit dieser Abfrage:
Meine Frage and die php-profis hier is..
Warum erhalte ich den ROI immer 5 x für jedes Jahr!?
Gruss und Danke
habe eine mysql-DB welche folgende 4 Tabellen + (primary keys) enthält:
industry (industry_sector_id)
companies (company_id (autoincrement))
balance_sheet (company_id, year)
profit_loss (company_id, year)
Möchte den jährlichen ROI berechnen einer Company mit dieser Abfrage:
PHP-Code:
SELECT
profit_loss.profit_loss_before_tax / balance_sheet.total_assets AS roi,
balance_sheet.`year`,
companies.company_name
FROM
balance_sheet,
companies,
profit_loss
WHERE
(companies.company_name = 'GREENE KING PLC ') AND
(companies.company_id = balance_sheet.company_id) AND
(companies.company_id = profit_loss.company_id)
Warum erhalte ich den ROI immer 5 x für jedes Jahr!?
Gruss und Danke
Kommentar