BigQuery Listing the snapshot tables in a dataset
Get the list of table snapshots in a BigQuery dataset by querying the INFORMATION_SCHEMA.TABLE_SNAPSHOTS table
List of snapshots example
SELECT * FROM library_backup.INFORMATION_SCHEMA.TABLE_SNAPSHOTS;\n
Filter the table snapshots of a specific table
\n\nSELECT * FROM library_backup.INFORMATION_SCHEMA.TABLE_SNAPSHOTS\nWHERE base_table_name="books";\n