#sql
Read more stories on Hashnode
Articles with this tag
In PostgreSQL, when you use LATERAL in a join and do not explicitly mention an ON condition, the join still happens because of the nature of how...
Analyse query execution plan (IO/ time) Avoid lazy spooling (temporary memory for computation) caused by duplicate aggregation Ignore lazy spooling...
Use of minimal columns in table creation. (max 100 columns). Avoid use of distinct; use ‘group by’ instead. Use of LIMIT when fetching...