gpt4 book ai didi

php - 如何使用 ssp.class.php 连接两个表

转载 作者:可可西里 更新时间:2023-11-01 07:02:34 27 4
gpt4 key购买 nike

我开始使用 DataTables Table plug-in for jQuery并遇到了一些问题。我正在使用来自 here 的示例代码.

我的 MySQL 表看起来像这样:

id | name | father_id

father_id 是同一表中不同行中的 id 值。所以如果我想知道父亲的名字,我必须在同一个表中搜索 WHERE id = father_id。但是DataTable是做什么的,它只是按原样显示MySQL表的内容。

在我的 DataTable 中,我想显示这样的数据:

id | name | father_name | father_id

因此,当 DataTable 从 MySQL 表中获取数据时,但在创建表之前,我想更改列值,该值当时是 MySQL 中同一行中 father_id 的值。我也想通过使用特定的 father_id 搜索它来添加 father_name

最佳答案

作为PaulF指出,您需要使用 JOIN 或子查询从同一个表中检索父亲的姓名。

我假设您正在使用 ssp.class.php 根据您提到的示例在服务器端处理您的数据。

Class ssp.class.php 不支持连接和子查询,但有一个解决方法。诀窍是使用子查询,如下面的 $table 定义所示。将子查询中的 table 替换为您的实际表名。

$table = <<<EOT
(
SELECT
a.id,
a.name,
a.father_id,
b.name AS father_name
FROM table a
LEFT JOIN table b ON a.father_id = b.id
) temp
EOT;

$primaryKey = 'id';

$columns = array(
array( 'db' => 'id', 'dt' => 0 ),
array( 'db' => 'name', 'dt' => 1 ),
array( 'db' => 'father_id', 'dt' => 2 ),
array( 'db' => 'father_name', 'dt' => 3 )
);

$sql_details = array(
'user' => '',
'pass' => '',
'db' => '',
'host' => ''
);

require( 'ssp.class.php' );
echo json_encode(
SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns )
);

您还需要编辑 ssp.class.php 并将 FROM `$table` 的所有实例替换为 FROM $table 以删除反引号。

确保所有列名都是唯一的,否则使用 AS 分配别名。

注意事项

还有github.com/emran/ssp包含增强的 ssp.class.php 支持 JOIN 的存储库。

链接

参见 jQuery DataTables: Using WHERE, JOIN and GROUP BY with ssp.class.php获取更多信息。

关于php - 如何使用 ssp.class.php 连接两个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31004884/

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