5
অভ্যন্তরীণ যোগদানের সাথে PostgreSQL মুছুন delete
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' আমি নিম্নলিখিত ত্রুটি পোস্টগ্রিজ এসকিউএল 8.2.11 পেয়েছি ERROR: syntax error at or near "B" LINE 1: DELETE B.* from m_productprice B INNER JOIN m_product C ON ... আমি দেওয়ার …
197
sql
postgresql