Created
May 19, 2012 14:54
-
-
Save hidayat365/2731111 to your computer and use it in GitHub Desktop.
Summary SQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select kelas, count(*) as jumlah | |
from ( | |
select nis, max(kelas) kelas | |
from tabel | |
group by nis | |
) as summary | |
group by kelas |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment