How would I go about combining many query results, all from different tables, into one resulting table?
SELECT LEAST( (HSDIPLOMA + BACHELORDEGREE) / AVG(HSDIPLOMA + BACHELORDEGREE) OVER (),
1
) as res
FROM EDUCATIONPROFILE
ORDER BY cid ASC
SELECT LEAST( (EMPLOYED - UNEMPLOYED) / AVG(EMPLOYED - UNEMPLOYED) OVER (),
1
) as res
FROM ECONOMICPROFILE
ORDER BY cid ASC
SELECT ((MAXTEMP + MINTEMP)/ 2)/ (SELECT MAX((MAXTEMP + MINTEMP)/ 2) FROM CLIMATEPROFILE) FROM CLIMATEPROFILE ORDER BY cid ASC
SELECT (crimecount) / (SELECT MAX(CRIMECOUNT) FROM CRIMECOUNTS) FROM CRIMECOUNTS ORDER BY cid ASC
The goal being one query result (table) with different columns each having one of the respective queries result.