Y
Hacker News
new
|
ask
|
show
|
jobs
by
higeorge13
637 days ago
Analysts usually query data warehouses, which are columnar, so * is a query/warehouse killer. Everybody should just select the columns they need.
1 comments
mr_toad
636 days ago
This is another area where I wish SQL was more composable. I’d love to be able to specify a bunch of columns using a single reference or a function, without having to resort to dynamic sql. Exclude and rename are a start, but not enough.
link
sgarland
631 days ago
So make a VIEW, then SELECT * from that. Non-materialized views are effectively free as far as the DB is concerned; make hundreds of them if you want.
link