Skip to content
Advertisement

Sum values from a SQL table to a value from other SQL table

I have a PHP page like this:

ID Name Hours Flown
1 Joao 7
2 Andre 10
3 Tiago 15

And I want that “Hours Flown” column show a value from one column from a SQL table (users) with a sum of another SQL table (flights) where ID matches the “users” table.

I have a while($row = $result_list_pilots->fetch_assoc()) to show the table if that helps…

SQL query for now is a bit simple “SELECT * FROM users ORDER BY name;“. Already tried some JOIN examples but without success as the imported_hours gets duplicated as result from flights table is being found.

Tables: [Tables]1

How to do this?

Advertisement

Answer

I think here is what you want :

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement