在MySQL中设置的标签中搜索

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在MySQL中设置的标签中搜索相关的知识,希望对你有一定的参考价值。

Lets say you have a table with field called "tags" that consists from tags separated by commas and you want to check whether it includes a required tag. Here the simplest ways of doing that.
  1. -- 1st way
  2. WHERE FIND_IN_SET(" '.$tag.'", CONCAT(" ", TABLE.tags))
  3. LIMIT 1;
  4.  
  5. -- 2st way
  6. WHERE '.$tag.' IN(TABLE.tags)
  7. LIMIT 1;

以上是关于在MySQL中设置的标签中搜索的主要内容,如果未能解决你的问题,请参考以下文章

为啥表单提交没有捕获我在输入标签中设置的只读默认值?

标签视图中的 Android 操作栏搜索

如何让自定义标签栏显示标签栏项目在 Xcode 中设置的选定图像?

如何更新之前在代码中设置的 NSLayoutConstraint 常量? - 斯威夫特

iOS 8:在界面构建器中设置的自定义标签栏项目的选定图像不起作用

Style 中设置的 FontSize 与 Blend 中的 FontSize 不匹配