在我的数据库中,我有一个名为topics的表,在表中有tags列,其中标记以逗号分隔的顺序存储(例如$row['tags'] = "tag1,tag2,tag3,...".
我要做的是显示相关主题取决于每个标签。下面的代码只标识它找到的单个“标签”(例如$row['tags'] ="tag1"
)。你有什么建议吗?先谢谢。
<?php
$result_topic = $conn -> prepare("SELECT * FROM topics WHERE topics.topic_id = :id");
$result_topic->bindValue(':id',$topic_id, PDO::PARAM_INT);
$result_topic -> execute();
while($row = $result_topic->fetch(PDO::FETCH_ASSOC))
{
$tag = explode(",",$row['tags']);
for($i = 0; $i < count($tag); $i++){
$current_tag = $tag[$i];
$relative_topics = $conn -> prepare("SELECT topic_subject FROM topics WHERE tags LIKE ?");
$relative_topics -> bindParam(1,$current_tag);
$relative_topics -> execute();
$get_relative_topics = $relative_topics -> fetch(PDO::FETCH_ASSOC);
echo $get_relative_topics['topic_subject'].'<br>';
}
}
?>
答案 0 :(得分:1)
使用LIKE,您可以使用以下两个通配符 模式:
%匹配任意数量的字符,甚至是零字符 _只匹配一个字符。
因此,您需要在查询中使用%
通配符:
$current_tag = "%" . $tag[$i] . "%";
$relative_topics = $conn -> prepare("SELECT topic_subject FROM topics WHERE tags LIKE ?");
答案 1 :(得分:0)
您可以尝试使用以下SQL查询 -
$relative_topics = $conn -> prepare("SELECT topic_subject FROM topics WHERE tags LIKE %?%");