How to prevent SELECT * statements

Everyone of us knows that it is a bad idea, but we still do it sometimes: we execute SELECT * statements. There are so many different drawbacks to that approach: You return every column single from your table, even columns that are added at a later stage. Imagine what would happen in your query if …

How to prevent SELECT * statements + read more