|
|
|
|
|
by m0zg
2627 days ago
|
|
> SELECT * FROM AAA
Can't think of a realistic use case where such a query would be appropriate, even from just the performance standpoint. In fact, for a very long time the internal counterpart of BigQuery didn't even support "SELECT star", and nobody complained too badly. If you'd like to give Google a gift, however, sure "SELECT star" all you want. :-) > "SELECT field1, field2 FROM AAA" you'll pay only for the total size of field1 and field2 rows.
Moreover, if you also use a WHERE clause, you'll pay even less. |
|
Another example is materialized view creation. It's common for these to scan large quantities of data to compute aggregates.