Lineage-graph-accelerator / samples /sample_bigquery.sql
aamanlamba's picture
updated tests
d71b95a
raw
history blame contribute delete
298 Bytes
-- Sample BigQuery metadata query (for demonstration)
-- This is not run automatically; it's a sample string users can paste into the UI.
SELECT table_name, column_name, data_type
FROM `project.dataset.INFORMATION_SCHEMA.COLUMNS`
WHERE table_name IN ('raw_customers', 'clean_customers', 'orders');