/*2.9. Hacer un query que liste los alumnos que están morosos en todos los cursos en los que están inscriptos.*/SELECTDISTINCTfullnameFROM(SELECT*FROMenrollmentsWHEREstudent_iidIN(SELECT*FROM(SELECTstudent_iidst_idFROMenrollmentsGROUPBYstudent_iid,paidORDERBYst_id)ASfirstGROUPBYfirst.st_idHAVINGcount(first.st_id)=1)ANDpaid='false')ASelegidosLEFTJOINstudentsstONelegidos.student_iid=st.student_iid;