You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select id, first_names, last_names from instructors where first_names in (select first_names from instructors group by first_names, last_names having count(*) > 1) and last_names in (select last_names from instructors group by first_names, last_names having count(*) > 1) and array_length(first_names,1) > 0 order by first_names, last_names;
The text was updated successfully, but these errors were encountered:
There are some duplicate instructor listings:
The text was updated successfully, but these errors were encountered: