Spaces:
Sleeping
Sleeping
Update query.sql
Browse files
query.sql
CHANGED
@@ -16,12 +16,12 @@ SELECT
|
|
16 |
-- região
|
17 |
COALESCE(NULLIF(array_to_string(ARRAY_AGG(DISTINCT NULLIF(NULLIF(t.mineralization->'region'->>'region_name', 'Não especificado'), '')), ', '), ''), 'Não especificado') AS "Região",
|
18 |
-- quantidade mineralizacão
|
19 |
-
COALESCE(NULLIF(array_to_string(ARRAY_AGG(DISTINCT NULLIF(NULLIF(t.mineralization->>'quantity', 'Não especificado'), '')), ', '), ''), 'Não especificado') AS "Quantidade
|
20 |
|
21 |
COALESCE(NULLIF(array_to_string(ARRAY(
|
22 |
SELECT jsonb_extract_path_text(concentration, 'name_of_ore') || ' - (' || jsonb_extract_path_text(concentration, 'concentration_of_ore') || ')'
|
23 |
FROM jsonb_array_elements(mineralization->'concentration') AS concentration
|
24 |
-
), ', '), ''), 'Não especificado') AS "Concentração
|
25 |
|
26 |
-- extra_info
|
27 |
COALESCE(NULLIF(array_to_string(ARRAY_AGG(NULLIF(NULLIF(t.mineralization->'region'->>'extra_info', 'Não especificado'), '')), ' | '), ''), 'Não especificado') AS "Informações adicionais",
|
|
|
16 |
-- região
|
17 |
COALESCE(NULLIF(array_to_string(ARRAY_AGG(DISTINCT NULLIF(NULLIF(t.mineralization->'region'->>'region_name', 'Não especificado'), '')), ', '), ''), 'Não especificado') AS "Região",
|
18 |
-- quantidade mineralizacão
|
19 |
+
COALESCE(NULLIF(array_to_string(ARRAY_AGG(DISTINCT NULLIF(NULLIF(t.mineralization->>'quantity', 'Não especificado'), '')), ', '), ''), 'Não especificado') AS "Quantidade do minério",
|
20 |
|
21 |
COALESCE(NULLIF(array_to_string(ARRAY(
|
22 |
SELECT jsonb_extract_path_text(concentration, 'name_of_ore') || ' - (' || jsonb_extract_path_text(concentration, 'concentration_of_ore') || ')'
|
23 |
FROM jsonb_array_elements(mineralization->'concentration') AS concentration
|
24 |
+
), ', '), ''), 'Não especificado') AS "Concentração do minério",
|
25 |
|
26 |
-- extra_info
|
27 |
COALESCE(NULLIF(array_to_string(ARRAY_AGG(NULLIF(NULLIF(t.mineralization->'region'->>'extra_info', 'Não especificado'), '')), ' | '), ''), 'Não especificado') AS "Informações adicionais",
|