I have question about PostgreSQL join.
Does PostgreSQL create temporary table for JOINed tables or it makes everything
without any temporary tables?
The reason of my question is: When I make SELECT request with many JOINs, I see IO spike in write operations. What can be the reason of this issue?
Thanks a lot.