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
INNER JOIN
คำสั่ง DELETE: postgresql.org/docs/8.2/static/sql-delete.html