Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个小型社交网站。人们可以发布带有主题标签的帖子。
例子:
“我讨厌#walking under rain” “今天我做了我的#homework。”
“我讨厌#walking under rain”
“今天我做了我的#homework。”
当用户发布这些内容时,代码会将这些内容作为文本发送到数据库。
现在我的问题是,我想为所有这些标签制作页面,例如example.com/walking,在这个页面中,我想显示所有包含#walking文本的帖子。
example.com/walking
#walking
如何选择#walking帖子中的数据?
非常感谢。
就像是:select * from posts where lower(post_body) like '%#walking%';
select * from posts where lower(post_body) like '%#walking%';