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