| sheet | rows |
|---|---|
|
inventory.files
|
17098
|
|
gold.bid_level
|
3700
|
|
gold.tender_level
|
1278
|
|
gold.population
|
913
|
|
inventory_v3.bid_level
|
151
|
|
inventory_v3.tender_level
|
28
|
WITH sheets AS (
SELECT 'gold.population' AS sheet, count(*) AS rows FROM xlsx_gold_standard_v12_b56445cb_4
UNION ALL SELECT 'gold.tender_level', count(*) FROM xlsx_gold_standard_v12_b56445cb_2
UNION ALL SELECT 'gold.bid_level', count(*) FROM xlsx_gold_standard_v12_b56445cb_1
UNION ALL SELECT 'inventory_v3.tender_level', count(*) FROM xlsx_inventory_v3_4b022d33_5
UNION ALL SELECT 'inventory_v3.bid_level', count(*) FROM xlsx_inventory_v3_4b022d33_4
UNION ALL SELECT 'inventory.files', count(*) FROM xlsx_inventory_830a48f1_1
)
SELECT * FROM sheets ORDER BY rows DESC;