What problem does it solve? Writing correct SQL across Databricks Unity Catalog, Microsoft Fabric Synapse, and Fabric Eventhouse requires knowing each platform's dialect, and using deprecated patterns like PARTITIONED BY with ZORDER BY leads to suboptimal Delta tables. ## Core Features & Use Cases - Databricks Delta DDL: Create managed Delta tables on Unity Catalog using Liquid Clustering with CLUSTER BY, plus OPTIMIZE and VACUUM maintenance commands. - Fabric Synapse T-SQL: Query patterns for Fabric Data Warehouse including TOP N, DATEADD, and aggregation joins. - KQL for Eventhouse: Real-time analytics queries with time-based filtering and binning for Fabric RTI. - T-SQL to Spark SQL Conversion: A mapping table for translating functions like GETDATE, ISNULL, and STRING_AGG between dialects. - Use Case: When asked to create a new sales table in Databricks, generate a CREATE TABLE statement using CLUSTER BY on date and category columns instead of legacy partitioning. ## Quick Start Generate a Databricks Delta table DDL with Liquid Clustering for my sales data using the sql-generation skill.