is it possible to generate an execution plan in Postgres like the one in MySQL below? thanks
1 Answer
Yes, it is possible. pgAdmin does execution plan visualisation. Same possibility has OmniDB. There is a tool for visualisation plan based on result of Postgres's EXPLAIN command in JSON format Postgres EXPLAIN Visualizer. You can write own tool too, because Postgres can export plans in XML, JSON or YAML format.

explainorexplain (analyze). It is worth the effort