Ask Your Question
4

How can I locate the words that are adjacent to the searched keyword in MySQL?

asked 2022-08-09 11:00:00 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-10-02 11:00:00 +0000

nofretete gravatar image

You can use the MySQL LIKE operator with wildcard characters to locate words that are adjacent to the searched keyword. Here is an example query:

SELECT * FROM table_name WHERE column_name LIKE '%keyword _ word%';

In this query, the underscore character represents a single space, so this will match any occurrence of the keyword followed by one word, then another word (adjacent to each other, separated by a single space). The percent signs on either side of the search pattern indicate that there may be any number of characters before or after the matched pattern.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-08-09 11:00:00 +0000

Seen: 9 times

Last updated: Oct 02 '22