こんにちは、Oracle テーブルから幾何座標を取得する必要があります。現在私は使用しています
(select column_value
from (
select rownum r,
b.*
from table(
select h.geometry.sdo_ordinates
from hz_locations h
where location_id =
(select location_id
from csf_ct_tasks
where task_id = p_task_id)
) b
) -- location_id = 973, task_id = 36420
where r =1) as latitude,
(select column_value
from (
select rownum r,
b.*
from table(
select h.geometry.sdo_ordinates
from hz_locations h
where location_id =
(select location_id
from csf_ct_tasks
where task_id = p_task_id)
) b
)
where r =2) as longitude
ここでp_task_id
は、タスクの特定の緯度、経度を取得するために使用されます。しかし、外側のクエリでユーザーIDを指定して、単一のユーザーの緯度、経度のリストを取得する必要があります。私のクエリを書き直すことは可能ですか?
私の実際の選択ステートメントは
SELECT all h.location_id,
h.address1,
h.address2,
h.address3,
h.address4,
h.house_number,
h.street_suffix,
h.apartment_number,
h.street,
h.po_box_number,
h.city,
h.state,
h.province,
h.county,
h.country,
h.postal_code as customer_address
from hz_locations h,
csf_ct_tasks ct
where h.location_id = ct.location_id
and ct.owner_id = 10180
前もって感謝します。
![テーブルに格納されている緯度と経度の応答例][2]