YQL
1 program
Added 2026-02-26T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Yahoo Query Language
Provenance: commit b82c9e2225 · authored 2026-02-26T17:14:58+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
Weather Forecast Subquery
Provenance: commit b82c9e2225 · authored 2026-02-26T17:14:58+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
-- Get weather forecast using a nested subquery
-- Demonstrates YQL's SQL-like syntax with sub-SELECTs
SELECT item.title, item.condition.text, item.condition.temp
FROM weather.forecast
WHERE woeid IN (
SELECT woeid FROM geo.places(1) WHERE text = "New York, NY"
) AND u = "c"