I have some sql that brings back information about the geometry of jobs.
very simply this is
select
job.job_number,
job.WKT_values
from
job
the job.WKT_values field brings back information about the location of the job (latitude and longitude) in the following format
POINT (-2.534981 52.14983)
what i would like to is add some code to the report so that the -2.534981 appears in one column and 52.14983 appears in another column and I can then pull these straight into power bi for mapping.
how do i go about editing the sql so that it splits the field based on a "(" for the first split and then a space for the second split?