The point is what. They asked me to make a sample of 3 tables:
Student(Table) ID | FIO | Adress | Group Link(Table) IDT | Group | Subject Teacher(Table) ID | FIO | Adress
As a result of the sample, we should see the following fields:
Student.FIO | Link.Subject | Teacher.FIO
Well, I kind of wrote a query:
SELECT Student.FIO, link.Subject, Teacher.FIO FROM (Student INNER JOIN link ON student.Group = link.Group) INNER JOIN Teacher ON link.IDT = Teacher.ID WHERE (`Student`.`FIO` LIKE '%Pupkin%');
Everything is doing fine, then I was told that it was allegedly not invested, make it embedded. What and how crazy I will not apply. Soon will break phpmyadmin
. Help me please.