-
Notifications
You must be signed in to change notification settings - Fork 96
Snippets
Evgeny Skvortsov edited this page May 24, 2023
·
4 revisions
OfficeStats(office:,
total_comp? += compensation,
average_comp? Avg= compensation,
employee_count? += 1) distinct :-
Employee(office:, compensation:);
EmployeeLocation(name:, city:) :-
Employee(name:, office:),
Office(office:, city:);