0

どの製品にオプションがあるかを調べてエクスポートする方法を知りたいので、自分のサイトで製品を調べて、オプション付きの製品の価格を変更して修正することができます。

4

1 に答える 1

0

私はそれが古いことを知っていますが、誰かを助けるために、このmysqlクエリはオプションを持つすべての製品を返す必要があります...

select * from product where product_id in (select product_id from product_option group by product_id) order by product_id
于 2013-02-05T17:56:12.147 に答える