How to avoid top 5 mistakes in SQL
Let’s discuss some tips and tricks to avoid major mistakes in SQL
Never use Select *
select *, gets the data from all the columns, which increases the latency and is expensive for huge data.
Instead, get only the required fields, which limits the si...
blogofcodes.hashnode.dev2 min read
Anuoluwapo Mokuolu
Entry level Data Analyst and Graphic Designer passionate about making an impact
Thank you so much for this article. Now I know some things to avoid while using SQL