I have query like this
This is my first query.
SELECT
id,
COUNT(id) ct_id,
SUM(kl) sum_kl,
SUM(CASE WHEN tgl_kondisi="2017-09-13" THEN 1 ELSE 0 END) as tot,
SUM(CASE WHEN tgl_kondisi <= "2017-09-14" THEN kl ELSE 0 end ) as sum_kl2
FROM (
SELECT
id_kondisi as id,
tgl_kondisi,
nilai_potensi_kerugian AS kl
FROM laporan_kondisi
UNION
SELECT
id_sub_kondisi,
tgl_kondisi,
nilai_potensi_kerugian
FROM laporan_kondisi
) merged_table GROUP BY id ORDER BY id;
The result
+------+-------+----------+------+----------+
| id | ct_id | sum_kl | tot | sum_kl2 |
+------+-------+----------+------+----------+
| 01 | 3 | 20000000 | 3 | 20000000 |
| 0101 | 2 | 9000000 | 2 | 9000000 |
| 0102 | 2 | 11000000 | 2 | 11000000 |
| 02 | 1 | 0 | 0 | 0 |
| 0201 | 1 | 0 | 0 | 0 |
| 0202 | 1 | 0 | 0 | 0 |
| 0203 | 1 | 0 | 0 | 0 |
| 03 | 2 | 4000000 | 2 | 4000000 |
| 0301 | 1 | 0 | 1 | 0 |
| 0302 | 2 | 4000000 | 2 | 4000000 |
| 0303 | 1 | 0 | 1 | 0 |
+------+-------+----------+------+----------+
And the second query
SELECT
id,
SUM(CASE WHEN tgl_tindak_lanjut="2017-09-14" THEN 1 ELSE 0 end ) as count_all_09,
SUM( CASE WHEN tgl_tindak_lanjut="2017-09-13" THEN 1 ELSE 0 END) as count_09_13
FROM (
SELECT
a.id_kondisi as id,
d.tgl_tindak_lanjut as tgl_tindak_lanjut
FROM
laporan_kondisi a
LEFT OUTER JOIN
laporan_sebab b
ON
a.id = b.id_laporan_kondisi
LEFT OUTER JOIN
laporan_rekomendasi c
ON
b.id = c.id_laporan_sebab
LEFT OUTER JOIN
laporan_tindak_lanjut d
ON
c.id = d.id_laporan_rekomendasi
UNION
SELECT
a2.id_sub_kondisi,
d2.tgl_tindak_lanjut as tgl_tindak_lanjut
FROM
laporan_kondisi a2
LEFT OUTER JOIN
laporan_sebab b2
ON
a2.id = b2.id_laporan_kondisi
LEFT OUTER JOIN
laporan_rekomendasi c2
ON
b2.id = c2.id_laporan_sebab
LEFT OUTER join
laporan_tindak_lanjut d2
ON
c2.id = d2.id_laporan_rekomendasi
) merged_table GROUP BY id
The Result
+------+--------------+-------------+
| id | count_all_09 | count_09_13 |
+------+--------------+-------------+
| 01 | 0 | 1 |
| 0101 | 0 | 1 |
| 0102 | 0 | 0 |
| 02 | 0 | 0 |
| 0201 | 0 | 0 |
| 0202 | 0 | 0 |
| 0203 | 0 | 0 |
| 03 | 0 | 0 |
| 0301 | 0 | 0 |
| 0302 | 0 | 0 |
| 0303 | 0 | 0 |
+------+--------------+-------------+
I want to UNION
the FIrst and second queries so the table will looks like this
+------+-------+----------+------+----------+--------------+-------------+
| id | ct_id | sum_kl | tot | sum_kl2 | count_all_09 | count_09_13 |
+------+-------+----------+------+----------+--------------+-------------+
| 01 | 3 | 20000000 | 3 | 20000000 | 0 | 1 |
| 0101 | 2 | 9000000 | 2 | 9000000 | 0 | 1 |
| 0102 | 2 | 11000000 | 2 | 11000000 | 0 | 0 |
| 02 | 1 | 0 | 0 | 0 | 0 | 0 |
| 0201 | 1 | 0 | 0 | 0 | 0 | 0 |
| 0202 | 1 | 0 | 0 | 0 | 0 | 0 |
| 0203 | 1 | 0 | 0 | 0 | 0 | 0 |
| 03 | 2 | 4000000 | 2 | 4000000 | 0 | 0 |
| 0301 | 1 | 0 | 1 | 0 | 0 | 0 |
| 0302 | 2 | 4000000 | 2 | 4000000 | 0 | 0 |
| 0303 | 1 | 0 | 1 | 0 | 0 | 0 |
+------+-------+----------+------+----------+--------------+-------------+
And my query is like this.
SELECT
id,
COUNT(id) ct_id,
SUM(kl) sum_kl,
SUM(CASE WHEN tgl_kondisi="2017-09-13" THEN 1 ELSE 0 END) as tot,
SUM(CASE WHEN tgl_kondisi <= "2017-09-14" THEN kl ELSE 0 end ) as sum_kl2
FROM (
SELECT
id_kondisi as id,
tgl_kondisi,
nilai_potensi_kerugian AS kl
FROM laporan_kondisi
UNION
SELECT
id_sub_kondisi,
tgl_kondisi,
nilai_potensi_kerugian
FROM laporan_kondisi
) merged_table
UNION ALL
SELECT
id,
SUM(CASE WHEN tgl_tindak_lanjut="2017-09-14" THEN 1 ELSE 0 end ) as count_all_09,
SUM( CASE WHEN tgl_tindak_lanjut="2017-09-13" THEN 1 ELSE 0 END) as count_09_13
FROM (
SELECT
a.id_kondisi as id,
d.tgl_tindak_lanjut as tgl_tindak_lanjut
FROM
laporan_kondisi a
LEFT OUTER JOIN
laporan_sebab b
ON
a.id = b.id_laporan_kondisi
LEFT OUTER JOIN
laporan_rekomendasi c
ON
b.id = c.id_laporan_sebab
LEFT OUTER JOIN
laporan_tindak_lanjut d
ON
c.id = d.id_laporan_rekomendasi
UNION
SELECT
a2.id_sub_kondisi,
d2.tgl_tindak_lanjut as tgl_tindak_lanjut
FROM
laporan_kondisi a2
LEFT OUTER JOIN
laporan_sebab b2
ON
a2.id = b2.id_laporan_kondisi
LEFT OUTER JOIN
laporan_rekomendasi c2
ON
b2.id = c2.id_laporan_sebab
LEFT OUTER join
laporan_tindak_lanjut d2
ON
c2.id = d2.id_laporan_rekomendasi
) merged_table GROUP BY id
I want to UNION ALL
when in my FROM
there is an UNION
, while in my UNION
there is LEFT OUTER JOIN
, when i am trying this query i got an error like this below
The used SELECT statements have a different number of columns
Is there anything wrong with my code ? or maybe i used query that can't be done? I guess that SQL fiddle is not needed for this, most likely experienced people will see right away what is wrong.
From JNevill Query, i got a result
+------+-------+----------+------+----------+----+--------------+-------------+
| id | ct_id | sum_kl | tot | sum_kl2 | id | count_all_09 | count_09_13 |
+------+-------+----------+------+----------+----+--------------+-------------+
| 01 | 17 | 48000000 | 13 | 48000000 | 01 | 0 | 1 |
+------+-------+----------+------+----------+----+--------------+-------------+
1 row in set (0.00 sec)