ClaytonAguiar
Member
Hi,
The below query is the detail in a master-detail relationship. When I set the Master property, I get the message "". There IS a FK constraint.
select id, name
from teachers
where
id not in (
select t.id as id
from assignedteachers at,
teachers t
where
(at.IDScheduledCourse=:ID) and
(t.ID = at.IDTeacher)
)
The detail table HAS a FK Constraint with the master table (ScheduledCourses).
Is that a warning? An error? Any missing parameter/property?
The below query is the detail in a master-detail relationship. When I set the Master property, I get the message "". There IS a FK constraint.
select id, name
from teachers
where
id not in (
select t.id as id
from assignedteachers at,
teachers t
where
(at.IDScheduledCourse=:ID) and
(t.ID = at.IDTeacher)
)
The detail table HAS a FK Constraint with the master table (ScheduledCourses).
Is that a warning? An error? Any missing parameter/property?