You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that the solution posted as one today is incorrect.
The following worked for me:
SELECT name,
CONCAT(ROUND(
(population*100) /
(SELECT population FROM world WHERE name = 'Germany'), 0
), '%')
FROM world
WHERE continent = 'Europe'
sippala, yuhang-dong, aaarr21, amnhere, jiaoqiyuan and 1 more