sql >> Database teknologi >  >> RDS >> Mysql

Fejl #1066 - Ikke unik tabel/alias i MySQL

brug forskellige aliasser til tabellen students og alle relaterede kolonner

select <Fields to be seleced>
FROM `batches`   
INNER JOIN courses ON courses.id = batches.course_id 
LEFT OUTER JOIN attendances ON attendances.batch_id = batches.id AND attendances.month_date = '2016-09-05'  
LEFT OUTER JOIN students st1 ON st1.id = attendances.student_id AND students.batch_id = batches.id 
INNER JOIN students st2 ON  batches.id = st2.batch_id 
WHERE ('2016-09-05' BETWEEN batches.start_date AND batches.end_date AND batches.is_active = 1 AND batches.is_deleted = 0 AND courses.is_deleted = 0 )  GROUP BY batches.id ORDER BY courses.course_name,batches.id LIMIT 0, 10;


  1. Installer Azure Data Studio på Ubuntu 18.04

  2. MYSQL Inner Join if-erklæring

  3. Hvorfor er logiske læsninger for aggregerede vinduesfunktioner så høje?

  4. Sådan rettes "Konvertering mislykkedes ved konvertering af værdien til datatype" i SQL Server