从Joomla文档中我读到了如何在php中运行sql查询。
我的代码如下:
$query->select($db->quoteName('customfield_value'));
$query->from($db->quoteName('#__virtuemart_product_customfields'));
$query->where($db->quoteName('virtuemart_custom_id')." = ".$db->quote('322'));
$query->and($db->quoteName('virtuemart_product_id'). " = ".$item->virtuemart_product_id));
$db->setQuery($query);
$results = $db->loadObject();
echo "Factory Code:" . $results->customfield_value;
代码带来了工厂代码而不是产品的工厂代码然后我不得不添加行
$查询 - >和......
告诉您从特定产品中获取工厂代码,但它根本不会产生任何结果。最终我用$ query->和?
写错了任何想法/解决方案?
提前谢谢
答案 0 :(得分:0)
好的,我找到了正确的答案/语法:
$query->select($db->quoteName('customfield_value'));
$query->from($db->quoteName('#__virtuemart_product_customfields'));
$query->where($db->quoteName('virtuemart_custom_id')." = 322", "AND")
->where($db->quoteName('virtuemart_product_id')." = ". $item->virtuemart_product_id);