Summary
Sharded tables in BigQuery, also known as pseudo-partitioning, allow data to be split across different tables, each with a unique suffix. These tables can be queried collectively using a wildcard, creating an invisible UNION ALL. Although these suffixes often represent dates, BigQuery discourages this due to the overhead of storing separate schema, metadata, and permission checks. Instead, it recommends using date-partitioned tables and provides a conversion method for date-sharded tables.