I have 2 table :
-
Propinsi table
-
Kota table
I create Grid Kota with SQL syntax :
SELECT
kot_sn_pk,
kot_usr_sn_fk,
kot_prp_sn_fk, // this field is linked to propinsi table to get propinsi
kot_kota
FROM
900_kota_kot
WHERE
kot_usr_sn_fk = [usr_sn_pk]
ORDER BY ??? // I want to add ORDER BY Propinsi and then Kota
The result without ORDER BY is like this :
How do I setup ORDER BY that I want ?






