Не могу понять как в sqlite удалить запись по данным из другой таблице.
Пробовал так:
DELETE FROM groups, home, parents, students WHERE students.id_students = 8
AND parents.id_parents = students.parents_students
AND home.id_home = students.home_students
AND groups.link_students_groups = 8;
Но как я понял нельзя удалять сразу из нескольких таблиц. Переделал запрос так:
DELETE FROM home WHERE home.id_home = students.home_students AND students.id_students = 8;
DELETE FROM goups WHERE groups.link_students_groups = 8;
DELETE FROM parents WHERE parents.id_parents = students.parents_students AND students.id_students = 8;
DELETE FROM students WHERE students.id_students = 8;
Но тоже не работает жалуется на students.home_students что не так то на этот раз?