Difference between revisions of "NSS Tutorial"
From SQLZOO
(→Calculate how many agree or strongly agree) |
|||
| Line 54: | Line 54: | ||
==Calculate how many agree or strongly agree== | ==Calculate how many agree or strongly agree== | ||
<div class='qu'> | <div class='qu'> | ||
| − | <p class='imper'>Show the institution and subject where 100 | + | <p class='imper'>Show the institution and subject where the '''score''' is at least 100 for question 15. |
</p> | </p> | ||
| Line 69: | Line 69: | ||
FROM nss | FROM nss | ||
WHERE question='Q15' | WHERE question='Q15' | ||
| − | AND | + | AND score>=100 |
</source> | </source> | ||
</div> | </div> | ||
Revision as of 15:09, 10 December 2012
| Field | Type |
|---|---|
| ukprn | varchar(8) |
| institution | varchar(100) |
| subject | varchar(60) |
| level | varchar(50) |
| question | varchar(10) |
| A_STRONGLY_DISAGREE | int(11) |
| A_DISAGREE | int(11) |
| A_NEUTRAL | int(11) |
| A_AGREE | int(11) |
| A_STRONGLY_AGREE | int(11) |
| A_NA | int(11) |
| CI_MIN | int(11) |
| score | int(11) |
| CI_MAX | int(11) |
| response | int(11) |
| sample | int(11) |
| aggregate | char(1) |
National Student Survey 2012
The National Student Survey http://www.thestudentsurvey.com/ is presented to thousands of graduating students in UK Higher Education. The survey asks 22 questions, students can respond with STRONGLY DISAGREE, DISAGREE, NEUTRAL, AGREE or STRONGLY AGREE.
The table nss has one row per institution, subject and question.
Check out one row
The example shows the number who responded for:
- question 1
- at 'Edinburgh Napier University'
- studying '(8) Computer Science'
Show the the percentage who STRONGLY AGREE
SELECT response FROM nss WHERE question='Q01' AND institution='Edinburgh Napier University' AND subject='(8) Computer Science'
SELECT A_STRONGLY_AGREE FROM nss WHERE question='Q01' AND institution='Edinburgh Napier University' AND subject='(8) Computer Science'
Calculate how many agree or strongly agree
Show the institution and subject where the score is at least 100 for question 15.
SELECT response FROM nss WHERE question='Q01' AND institution='Edinburgh Napier University' AND subject='(8) Computer Science'
SELECT institution, subject FROM nss WHERE question='Q15' AND score>=100