Hi,
I see information schema JOBS view has "total_bytes_billed" at query/job level. May i possibly find the same information at table level?? like how much of bytes read from each table in the query and processed.
The INFORMATION_SCHEMA.TABLE_STORAGE view provides information about the storage usage of tables and materialized views. It does not provide information about the bytes read by a specific query from each table.
The BigQuery API can provide information about the total bytes processed by a query, but it does not provide this information for each table accessed by the query.
If you need to monitor the bytes processed for individual tables, you might consider the following workarounds: