实际上,我创建了一个CMS,我可以在其中插入带有关键字的帖子。我的意思是我在mysql数据库中使用一个表,其中有一个名为“keywords”的列。
我想用逗号分隔的关键字来创建类别,为了做到这一点,如果特定帖子有很多单词,我必须一次取一个单词,我想知道sql查询(或PHP代码)我必须使用PHP来实现这一目的。
例如: - 如果我有桌子,如下所示,
Post_id post_title post_keywords 1 first post PHP 2 second post PHP, jquery 3 third post css, html 4 fourth post html
我想根据关键字创建类别,如下所示: -
PHP -> first post Jquery -> second post CSS -> third post second post html -> third post fourth post
意味着我点击php然后它应该包含两个帖子“first post”和“second post”。
答案 0 :(得分:3)
你的帖子表:
CREATE TABLE posts
(`id` int, `title` varchar(11))
;
INSERT INTO posts
(`id`, `title`)
VALUES
(1, 'first post'),
(2, 'second post'),
(3, 'third post'),
(4, 'fourth post')
;
您的代码表
CREATE TABLE tags
(`id` int, `tag` varchar(6))
;
INSERT INTO tags
(`id`, `tag`)
VALUES
(1, 'PHP'),
(2, 'jquery'),
(3, 'css'),
(4, 'html')
;
和你的联系表。
CREATE TABLE post2tags
(`postid` int, `tagid` int)
;
INSERT INTO post2tags
(`postid`, `tagid`)
VALUES
(1, 1),
(2, 1),
(2, 2),
(3, 3),
(3, 4),
(4, 4)
;
然后这个SQL基本上可以得到你想要的东西(也许顺序不同):
SELECT t.*, p.*
FROM tags t
INNER JOIN post2tags p2t ON t.id=p2t.tagid
INNER JOIN posts p ON p.id=p2t.postid
ORDER BY t.tag, p.title
这是一种多对多的关系。一旦你了解它,你可能会经常使用它。
答案 1 :(得分:0)
我会做以下
表格帖子
PostId|PostName|...
1|First Post|...
2|Second Post|...
...
表关键字
keyID|KeyName
1|PHP
2|JQUERY
...
表RE_Post_KEY(多对多)
PostID|KeyID
1|1
1|2
2|1
2|2
...
答案 2 :(得分:0)
虽然我同意规范化数据库的建议,但为了回答您的具体问题,您可以使用FIND_IN_SET()
:
SELECT Post_Title
FROM YourTable
WHERE FIND_IN_SET('php', post_keywords)
但是,如果您规范化数据库,则只需使用简单的JOIN
。