DELETE B.*
FROM m_productprice B
INNER JOIN m_product C ON B.m_product_id = C.m_product_id
WHERE C.upc = '7094' AND B.m_pricelist_version_id = '1000020'
PostgreSQL 8.2.11 오류가 발생합니다
ERROR: syntax error at or near "B"
LINE 1: DELETE B.* from m_productprice B INNER JOIN m_product C ON ...
나는 기부를 시도했다
DELETE B from m_productprice B INNER JOIN m_product C ON B....
ERROR: syntax error at or near "B"
나는 기부를 시도했다
ERROR: syntax error at or near "INNER"
LINE 1: DELETE from m_productprice B INNER JOIN m_product C ON B.m_...
내 쿼리의 문제점은 무엇입니까?
내부 조인없이이 쿼리를 실행하는 다른 방법
—
친구
설명서를 참조하십시오. 정확히 그 예가 있습니다.
—
a_horse_with_no_name 6
INNER JOIN
DELETE 문에 사용할 수 없습니다 : postgresql.org/docs/8.2/static/sql-delete.html