0

当我使用这个 mysql 代码时

update catalog_product_entity_decimal
  set value = "6.0000" 
  where attribute_id = 75 and
        entity_in ( SELECT 
        product_id 
        from `catalog_category_product` 
        WHERE category_id =37 );

我收到这个错误

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT product_id from `catalog_category_product` ' at line 4

我无法弄清楚我的查询有什么问题。有人可以告诉我有什么问题吗?

谢谢

4

3 回答 3

3

您在 entity_in 之后缺少 IN 子句。用这个:

update catalog_product_entity_decimal
  set value = "6.0000" 
  where attribute_id = 75 and
        entity_id IN ( SELECT 
        product_id 
        from `catalog_category_product` 
        WHERE category_id =37 );
于 2013-09-06T05:34:13.117 回答
1

我认为 catalog_category_product 不会包含 ' 符号。在不使用 ' 符号的情况下尝试查询

于 2013-09-06T05:35:13.360 回答
1

您在查询中遗漏了=ORin

于 2013-09-06T05:35:38.880 回答