Created
November 21, 2012 03:44
-
-
Save novalagung/4122885 to your computer and use it in GitHub Desktop.
This file contains 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 | |
KIRAAN.KODE AS KODEAKUN | |
, KIRAAN.NOSUBKLASIFIKASI | |
, KIRAAN.NAMA AS NAMAAKUN | |
, KIRAAN.ALIASNAMA | |
, KIRAAN.CHECKING | |
, KLAS.NOKLASIFIKASI | |
from | |
KIRAAN | |
, SUBKLAS | |
, KLAS | |
where | |
KIRAAN.KODE > 0 | |
AND KIRAAN.NOSUBKLASIFIKASI = SUBKLAS.NOSUBKLASIFIKASI | |
AND SUBKLAS.NOKLASIFIKASI = KLAS.NOKLASIFIKASI | |
AND KIRAAN.CHECKING = 'T' | |
order by | |
KODE | |
ASC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment