有个商品始终找不到,

2016-07-07 15:17 来源:www.chinab4c.com 作者:ecshop专家

可否pm过来您的后台和ftp

回答:
早期的EC助理,在导入淘宝,拍拍数据时,有可能会出显后台找不到,而前台可以看到商品的问题
可以执行下面的SQL,把数据找出来:
update ecs_goods set is_real = 1 where is_real = 0 and (extension_code = '' or extension_code is null)

注: ecs_ 为你的表前缀。

EC助理,
我在:数据库管理--SQL查询,里面输入:
update ecs_goods set is_real = 1 where is_real = 0 and (extension_code = '' or extension_code is null)

显示:SQL 语句已成功运行

这样,是不是问题就解决了?

ECSHOP 管理中心 - SQL查询
如下图:

SQL语句执行.JPG

===============================================

update ecs_goods set is_real = 1 where is_real = 0 and (extension_code = '' or extension_code is null)

===============================================

早期的EC助理,在导入淘宝,拍拍数据时,有可能会出显后台找不到,而前台可以看到商品的问题
可以执行下面的SQL,把数据找出来:
update ecs_goods set is_real = 1 where is_real = 0 and (extension_code = '' o ...
EC助理 发表于 2009-6-25 13:37



表前缀,是什么?
实在不懂

======================先执行下面一条SQL=====================
update ecs_goods set is_real = 1 where (is_real = 0 or is_real is null) and (extension_code = '' or extension_code is null or lower(extension_code) = 'false')
=======================================================

=========如果上面一条SQL,执行完还找不到的话,就执行下面的一条SQL======
update ecs_goods set is_real = 1 where (is_real = 0 or is_real is null)=======================================================

谢谢 !
问题已解决!

我执行了update ecs_goods set is_real = 1 where (is_real = 0 or is_real is null)但是提示:
出错了:
Table 'ecshophyl8.ecs_goods' doesn't exist

我的后台虚拟商品都显示不了,但是前台都可以显示。。谢谢高手帮忙解决下。