gpt4 book ai didi

php - 用于构建具有许多选择和连接的复杂 MySQL 查询的 PDO 方法?

转载 作者:行者123 更新时间:2023-11-30 00:41:26 25 4
gpt4 key购买 nike

我有一组与产品相关的attributes对象,它们在MySQL表中的建模方式不同,具体取决于它们的数据类型(varcharint > 等)以及产品的该属性是否可以有多个值或只有一个值。

我正在尝试编写代码来获取产品(或产品集)的属性和值。我认为创建关联 SQL 的责任将由 attributes 类负责。

我以前没有使用过太多 PDO,除了在其他人的代码中它被抽象了几个级别。在这里,我自己构建一切,所以我不确定它应该如何工作。

class attributes {

public function getSql(PDOStatement $sth) {
// some code to modify the PDOStatement so that it adds the required "SELECT" and "JOIN" clauses to it
return $sth;
}

}

class products {
protected $attributes = array(); // attribute_name => attributes object
public function addAttributeForLoad(attributes $attribute) {
$this->attributes[$attribute->get('name')] = $attribute;
return $this;
}
public function loadAttributeValues() {
foreach($this->attributes as $attribute) {
$this->dbh->prepare($attribute->getSql());
}
}
}

显然 loadAttributeValues 函数完全(?)错误。我只是想传达这样的想法:我以某种方式从每个用户/系统选择的属性添加到 SQL 中。我知道 Zend 有类似的功能,但这是普通的 PHP。

编辑

我被要求提供更多详细信息,所以这里是。

数据库是一个 EAV 结构,有一个主产品表,其中包含产品 id、sku 和其他与产品具有一对一关系的“核心”属性。

其他表包含各种属性,必须将这些属性连接到 Product_id 上的属性才能获取其他产品数据。

例如

tbl_product_color包含product_id、color_idtbl_product_smell 包含product_id、product_smell_id

我可能想要这两个属性,或者可能只想要其中一个。我的 SQL 看起来像:

SELECT t1.product_id, t1.sku, t3.product_smell
FROM tbl_products t1
LEFT JOIN tbl_product_smell t2 ON t1.id = t2.product_id
LEFT JOIN tbl_smells t3 ON t2.product_smell_id = t3.id
WHERE t1.updated BETWEEN 2014-01-20 AND NOW()
AND t2.product_smell_id IN (13, 17, 19, 23, 29)

现在,我知道我可以将该查询放入 PDO 中。但我想知道它是否有一些 native 方法可以添加到“SELECT”部分、“FROM/JOIN”部分和“WHERE”部分。

理想情况下,我会有一个尚未加载的产品集合对象,我可以向其中添加属性,并且它将处理这 3 个元素(选择、from/join、where)。

例如

$attribute = attributes::getByName('product_smell');
$limit_by = array('value','in',array('strong','medium','extra stinky')); // array containing 1.) compare to value or id, 2.) operator (in, nin, eq, neq, gt, lt, etc), 3.) operand

$product_collection->addAttribute($attribute,$limit_by);

$product_collection->load();

foreach($product_collection as $product) {
// do stuff like display on screen or whatever
}

sql 需要分段构建。在另一个应用程序中,我编写了“手动”执行此操作的代码,一旦构建了查询,就使用已弃用的 mysql_query 发送它。我只是想知道 PDO 是否有能力以这种方式添加 SELECT、FROM/JOIN 和 WHERE 子句,或者至少使其更简单。

最佳答案

I'm wondering if it has some native methods to add to the "SELECT" part, the "FROM/JOIN" part, and the "WHERE" part.

没有。

PDO 不会构建您的查询,而是运行它们。对于查询构建器,请查找 Doctrine

关于php - 用于构建具有许多选择和连接的复杂 MySQL 查询的 PDO 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21748420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com