Hi,
I am at beginner level with Birst and it is dificult for me to find in internet a place where I can see help for select statement syntax.
I am trying to append two columns in this UNIONALL table but it says there is an error:
(
SELECT
[o.UWI_BORE],
[o.REGION_DBU]
FROM
[Pozos Oeste] 'o'
WHERE
[o.REGION_DBU] <> 'NO OPERADO'
UNIONALL
SELECT
[s.UWI_BORE],
[s.REGION_DBU]
FROM
[Pozos Sur] 's'
WHERE
[s.REGION_DBU] <> 'NO OPERADO'
) 'p'
LEFT JOIN
SELECT
c.Latitud,
c.Longitud
FROM
Coordenadas 'c'
ON p.NOMBRE_POZO = c.NOMBRE_POZO
Someone can help me to find the error and if it is possible recommend me a place where I can find help for this cases or maybe where I can see examples of different scenarios please,
Thanks