EQUEL
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Embedded QUEL, EQUEL/C
Provenance: commit 7f742bc931 · authored 2026-03-05T12:19:13+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
Retrieve Employee Records
Provenance: commit 7f742bc931 · authored 2026-03-05T12:19:13+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
## /*
## * EQUEL example: retrieve employee records from INGRES database
## */
## main()
## {
## char ename[20];
## char edept[20];
## int esalary;
## ingres "personnel"
## range of e is employee
printf("Employees in Engineering:\n");
## retrieve (ename = e.name,
## edept = e.dept,
## esalary = e.salary)
## where e.dept = "Engineering"
## {
printf(" Name: %-20s Salary: %d\n", ename, esalary);
## }
## exit
## }