Loading services...

Big Data Query Interface

Query Iceberg tables using pandas SQL syntax

SQL Query Templates

Click to load template into query editor

All Hotels (Bronze)

Fetch first 10 hotels from Bronze layer (normalized data)

SELECT * FROM atlas.hotels LIMIT 10

Hotels by Supplier

Filter hotels by supplier ID (change supplier value as needed)

SELECT hotel_name, hotel_code, supplier, address_city, address_country
FROM atlas.hotels
WHERE supplier = '7'
LIMIT 20

Hotels by Country

Hotels in United States, sorted by star rating

SELECT hotel_name, hotel_code, address_city, address_country, star_rating
FROM atlas.hotels
WHERE address_country = 'US'
ORDER BY star_rating DESC
LIMIT 25

Hotels with Descriptions

Hotels that have description text available

SELECT hotel_name, hotel_code, hotel_description
FROM atlas.hotels
WHERE hotel_description IS NOT NULL
LIMIT 15

Translation Data

View translation enrichments (if table exists)

SELECT record_id, language_code, translation_status, translated_fields
FROM atlas.translations
LIMIT 10

Key Facts Data

View key facts extractions (if table exists)

SELECT record_id, key_facts, extraction_timestamp
FROM atlas.key_facts
LIMIT 10

Hotels with Amenities

Hotels with amenity information

SELECT hotel_name, hotel_code, amenities
FROM atlas.hotels
WHERE amenities IS NOT NULL
LIMIT 10

Recent Hotels by Timestamp

Most recently ingested hotels

SELECT hotel_name, hotel_code, supplier, ingestion_timestamp
FROM atlas.hotels
ORDER BY ingestion_timestamp DESC
LIMIT 20

Storage Settings

SQL Query