model user = {
from 'users.parquet'
}
val message = "Hello, World!"
val multiline = """
This is a
multiline string
"""
val path = 'data/input.json'
val integer = 42
val long = 100L
val decimal = 3.14159
val float = 2.5f
val exponential = 1.23e-4
select `column with spaces`, `reserved-keyword`
from products
where price > 100.0 and category = 'Electronics'
group by brand
having count(*) > 5
order by total_sales desc
limit 20
add new_column = price * quantity
exclude temp_column
rename old_name to new_name
from table1
concat
from table2
dedup
select
row_number() over (partition by category order by price desc) as rank
case
when status = 'active' then 1
when status = 'pending' then 0.5
else 0
end
transform x => x * 2
test output should be """
| id | name |
|----|---------|
| 1 | Alice |
"""