create table dict {id, word varchar2(255)).
I store strings of varying lengths within the 'word' field. How do I query for the following cases:-
- Search all words which are 4 characters in length
- Search all words which are greater than 4 characters in length
- Search all words which have 4-8 characters (inclusive)
- Search all words which are lesser than 4 characters in length
Env: h2, mysql. The data consists of english words, but would like to know the limitations if you use multibyte data (e.g japanese)