Advertisement
copysiper

Untitled

Jun 5th, 2024
765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT 'GLE' AS "Indicator",
  2.        (SELECT lifeexpectancy FROM country WHERE governmentform = 'Federal Republic' ORDER BY lifeexpectancy DESC LIMIT 1) AS "Federal republic",
  3.        (SELECT lifeexpectancy FROM country WHERE governmentform = 'Republic' ORDER BY lifeexpectancy DESC LIMIT 1) AS "Republic",
  4.        (SELECT lifeexpectancy FROM country WHERE lifeexpectancy IS NOT NULL AND governmentform != 'Republic' AND governmentform != 'Federal Republic' ORDER BY lifeexpectancy DESC LIMIT 1) AS "Other"
  5. UNION SELECT 'LLE' AS "Indicator",
  6.        (SELECT lifeexpectancy FROM country WHERE governmentform = 'Federal Republic' ORDER BY lifeexpectancy LIMIT 1),
  7.        (SELECT lifeexpectancy FROM country WHERE governmentform = 'Republic' ORDER BY lifeexpectancy LIMIT 1),
  8.        (SELECT lifeexpectancy FROM country WHERE lifeexpectancy IS NOT NULL AND governmentform != 'Republic' AND governmentform != 'Federal Republic' ORDER BY lifeexpectancy LIMIT 1)
  9. ORDER BY "Indicator"
  10. LIMIT 2;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement