select employee.supervisor_id as c0, employee.employee_id as c1, employee.full_name as c2, employee.marital_status as c3, employee.position_title as c4, employee.gender as c5, employee.salary as c6, employee.education_level as c7, employee.management_role as c8, store.store_country as c9, store.store_state as c10, store.store_city as c11, store.store_name as c12, store.store_type as c13, store.store_manager as c14, store.store_sqft as c15, store.grocery_sqft as c16, store.frozen_sqft as c17, store.meat_sqft as c18, store.coffee_bar as c19, store.store_street_address as c20 from employee as employee, salary as salary, store as store where salary.employee_id = employee.employee_id and employee.store_id = store.store_id and (employee.employee_id in (88, 89, 97, 98, 99)) group by employee.supervisor_id, employee.employee_id, employee.full_name, employee.marital_status, employee.position_title, employee.gender, employee.salary, employee.education_level, employee.management_role, store.store_country, store.store_state, store.store_city, store.store_name, store.store_type, store.store_manager, store.store_sqft, store.grocery_sqft, store.frozen_sqft, store.meat_sqft, store.coffee_bar, store.store_street_address order by employee.supervisor_id ASC NULLS FIRST, employee.employee_id ASC NULLS LAST, store.store_country ASC NULLS LAST, store.store_state ASC NULLS LAST, store.store_city ASC NULLS LAST, store.store_name ASC NULLS LAST; |