Should you use * in SQL?
That is why you should not use SELECT * in an SQL query anymore. It’s always better to use the explicit column list in a SELECT query than a * wild card. It not only improves performance but also makes your code more explicit. Why should we not use * in SQL? SELECT * return more data than required to …