MySQL 使用逗号分隔值联接两个表
2022-08-30 09:34:35
我有2个表格如下
注释表
╔══════════╦═════════════════╗
║ nid ║ forDepts ║
╠══════════╬═════════════════╣
║ 1 ║ 1,2,4 ║
║ 2 ║ 4,5 ║
╚══════════╩═════════════════╝
职位表
╔══════════╦═════════════════╗
║ id ║ name ║
╠══════════╬═════════════════╣
║ 1 ║ Executive ║
║ 2 ║ Corp Admin ║
║ 3 ║ Sales ║
║ 4 ║ Art ║
║ 5 ║ Marketing ║
╚══════════╩═════════════════╝
我希望查询我的 Notes 表,并将“forDepts”列与“位置”表中的值相关联。
输出应为:
╠══════════╬════════════════════════════╣
║ 1 ║ Executive, Corp Admin, Art ║
║ 2 ║ Art, Marketing ║
╚══════════╩════════════════════════════╝
我知道数据库应该规范化,但我无法更改此项目的数据库结构。
这将用于使用以下代码导出Excel文件。
<?PHP
$dbh1 = mysql_connect($hostname, $username, $password);
mysql_select_db('exAdmin', $dbh1);
function cleanData(&$str)
{
$str = preg_replace("/\t/", "\\t", $str);
$str = preg_replace("/\r?\n/", "\\n", $str);
if(strstr($str, '"')) $str = '"' . str_replace('"', '""', $str) . '"';
}
$filename = "eXteres_summary_" . date('m/d/y') . ".xls";
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Type: application/vnd.ms-excel");
//header("Content-Type: text/plain");
$flag = false;
$result = mysql_query(
"SELECT p.name, c.company, n.nid, n.createdOn, CONCAT_WS(' ',c2.fname,c2.lname), n.description
FROM notes n
LEFT JOIN Positions p ON p.id = n.forDepts
LEFT JOIN companies c ON c.userid = n.clientId
LEFT JOIN companies c2 ON c2.userid = n.createdBy"
, $dbh1);
while(false !== ($row = mysql_fetch_assoc($result))) {
if(!$flag) {
$colnames = array(
'Created For' => "Created For",
'Company' => "Company",
'Case ID' => "Case ID",
'Created On' => "Created On",
'Created By' => "Created By",
'Description' => "Description"
);
// display field/column names as first row
echo implode("\t", array_keys($colnames)) . "\r\n";
$flag = true;
}
$row['createdOn'] = date('m-d-Y | g:i a', strtotime($row['createdOn']));
array_walk($row, 'cleanData');
echo implode("\t", array_values($row)) . "\r\n";
}
exit;
?>
此代码仅输出第一个值“forDepts”
Exa:执行官(而不是执行官,公司管理员,艺术)
这可以由CONCAT或FIND_IN_SET来实现吗?
请帮忙!提前致谢!