DataEase
1 program
Added 2026-03-10T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: DataEase Query Language, DQL
Provenance: commit c2fe78ddfd · authored 2026-03-10T14:39:02+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Sales Report by Region
Provenance: commit c2fe78ddfd · authored 2026-03-10T14:39:02+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
; DataEase Query Language (DQL) example: Sales Report by Region
; Lists all orders placed in 2023 grouped by region with totals
for orders
with
order-date >= "01-01-2023" and
order-date <= "12-31-2023" and
status = "Completed"
in region order ;
define
line-total = quantity * unit-price
list
region ;
customer-name ;
order-date ;
product-name ;
quantity ;
unit-price ;
line-total
count
sum line-total
end