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.
我是数据库编程的新手。我必须从不同的单词中获取同一行,例如我有 2 列关键字和关键字中的数据可能有多个单词利润、利润、收入但数据列只有一个条目
关键词 数据
利润,利润,收入 它正在增加
现在,当用户输入利润或利润或收入时,他/她会得到相同的数据“它在增加”
你能提供我查询吗?提前致谢
使用喜欢:SELECT data FROM table WHERE keywords LIKE '%Profit%';
SELECT data FROM table WHERE keywords LIKE '%Profit%';