sql - MySQL query to retrieve only keywords using title case from text -


this question has answer here:

i have table column in database table called keywordtext contains text in lower case, e.g. word global.

however, if need include keywords in title or upper case, these must distinct lower case keywords, global not same global.

typically, mysql select * keyword keywordtext = 'global' returns 2 results, i.e. global , global.

but can suggest way return global? don't think including like binary in query because return other unigram or bigram keywords such global networking.

apologies duplication of previous questions.

to case sensitive query need binary compares each byte of information. example:

select * `table` binary `column` = 'value' 

Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -