Question
SELECT *
Hey,
I know that using SELECT * is bad practice. But let's say that your main query is cached and only selects the needed columns. You then have Query of Queries assigned for different resultsets. It's not bad practice to use SELECT * for these Query of Queries is it? I am already limiting number of columns retrieved by the original query.
Thanks!
