$conditions = Array
(
[table] => products_pages
[alias] => ProductsPage
[type] => inner
[foreignKey] =>
[conditions] => Array
(
[0] => ProductsPage.product_id = Product.id
)
)
次のSQLステートメントのように、NOTEXISTS条件を設定しようとしています。
SELECT * FROM products_pages,products
WHERE NOT EXISTS (SELECT id
from products_pages
where products_pages.product_id = products.id)
したがって、基本的に、products_pagesテーブルに存在しない製品を選択します。
CakePHPのSQLステートメントをフォーマットしてここで置き換える適切な方法は何ですか?
[条件]=>配列([0] =>(ここでSQLの上に挿入する適切な方法は何ですか?)
あなたの助けてくれて本当に感謝します、私はこれを約5時間運がなくて理解しようとしてきました。ありがとう!