gpt4 book ai didi

php - 比较两个sql表

转载 作者:可可西里 更新时间:2023-11-01 07:43:26 25 4
gpt4 key购买 nike

我有两张表,一张是文本字符串,一张是单词。

enter image description here

我如何获取表 A 中的每个字符串/行,并查看表 A 中的每个字符串包含表 B 中的“单词”数量 - 并获得如下结果:

表A
id: 1 包含表 B 中的 2 个词(汽车、红色)
id: 2 包含表 B 中的 2 个词 (house, hill)
id: 3 包含表 B 中的 0 个单词
id: 4 包含表 B 中的 2 个词(small、shoe)

最佳答案

<?php
// Get $TableA from TableA and $TableB from Table B (std code)

$result = array();
foreach ($TableA as $id => $string) {
$result[$id] = array();
$words = explode(' ', $string);
foreach ($words as $word) {
if (in_array($word, $TableB)) {
$result[$id][] = $word;
}
}
}

// - display $result - left as exercise!

关于php - 比较两个sql表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46258465/

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