ফাংশনটির প্রয়োজন ছাড়াই অন্য একটি বিকল্প
update points set country = t1.country from
(
select points.oid, countries.name as country from
countries INNER JOIN points on st_contains(countries.wkb_geometry,points.wkb_geometry)
) t1
where t1.oid = points.oid
আমি সন্দেহ করি (যদিও আমি পরীক্ষা করিনি) আপনার উদাহরণের মতো নেস্টেড ফাংশনটি ব্যবহার করার চেয়ে এটি আরও দ্রুত হবে।
চলমান থেকে আমার আউটপুট ব্যাখ্যা (আশা করি আপনার চেহারা অনুরূপ)। আপনি যদি আরও সিক স্ক্যান ফলাফল পেয়ে থাকেন তবে তা দেখার মতো এটি সম্ভবত সূচিগুলি সঠিকভাবে সেট আপ করা হয়নি।
Update on points (cost=1.18..29.40 rows=121 width=129)"
-> Nested Loop (cost=1.18..29.40 rows=121 width=129)"
Join Filter: _st_contains(countries.geometry, public.points.geometry)"
-> Hash Join (cost=1.18..2.37 rows=28 width=220)"
Hash Cond: (public.points.oid = public.points.oid)"
-> Seq Scan on points (cost=0.00..1.08 rows=28 width=114)"
-> Hash (cost=1.08..1.08 rows=28 width=110)"
-> Seq Scan on points (cost=0.00..1.08 rows=28 width=110)"
-> Index Scan using "countries_Idx" on countries (cost=0.00..0.91 rows=1 width=414)"
Index Cond: (geometry && public.points.geometry)"