9
하위 쿼리를 조건으로 사용하는 MySQL DELETE FROM
다음과 같은 쿼리를 시도하고 있습니다. DELETE FROM term_hierarchy AS th WHERE th.parent = 1015 AND th.tid IN ( SELECT DISTINCT(th1.tid) FROM term_hierarchy AS th1 INNER JOIN term_hierarchy AS th2 ON (th1.tid = th2.tid AND th2.parent != 1015) WHERE th1.parent = 1015 ); 알 수 있듯이 동일한 tid에 다른 부모가있는 경우 …