I need help with sql commands~ Thanks for your help in advance ^^
So I have 2 tables
How can I get the average from this 2 table.
The result that I want would be
Country Code 65 has 49.5 Frequency
Country Code 42 has 17 Frequency
Country Code 33 has 18 Frequency
Country Code 11 has 5 Frequency
Thank you very much!
You can query the two tables as a
UNION ALL
then use that as a sub-query with aGROUP BY
and anAVG()
on theFrequency
column: