You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<br><inputtype="text" name="textsearchfield" value="select * from user_data
52
+
<br><inputtype="text" name="textsearchfield" value="select * from aispeech_results_json
53
53
where contains ( jsondata, 'john OR johnny' ) > 0"/>
54
54
<br>
55
55
<br>
56
56
57
57
<inputtype="radio" name="opts" value="wildcards">Wildcards (% matches any string of characters, and an underscore _ character matches any single character)
58
-
<br><inputtype="text" name="textsearchfield" value="select * from user_data
58
+
<br><inputtype="text" name="textsearchfield" value="select * from aispeech_results_json
59
59
where contains ( jsondata, 'john%' ) > 0"/>
60
60
<br>
61
61
<br>
62
62
63
63
<inputtype="radio" name="opts" value="phrasesearch">Phrase searches (an AND search similar to OR but implicit)
64
-
<br><inputtype="text" name="textsearchfield" value="select * from user_data
64
+
<br><inputtype="text" name="textsearchfield" value="select * from aispeech_results_json
65
65
where contains ( jsondata, 'first order' ) > 0"/>
66
66
<br>
67
67
<br>
68
68
69
69
<inputtype="radio" name="opts" value="fuzzysearch">Fuzzy searches (find not only the original search word, but also all those similar to it)
70
-
<br><inputtype="text" name="textsearchfield" value="select * from user_data
70
+
<br><inputtype="text" name="textsearchfield" value="select * from aispeech_results_json
71
71
where contains ( jsondata, 'fuzzy(popins)' ) > 0"/>
72
72
<br>
73
73
<br>
74
74
75
75
<inputtype="radio" name="opts" value="nearsearch">Near searches (words within specified distance of each other)
76
-
<br><inputtype="text" name="textsearchfield" value="select * from user_data
76
+
<br><inputtype="text" name="textsearchfield" value="select * from aispeech_results_json
77
77
where contains ( jsondata, 'near((order, smith), 1)' ) > 0"/>
0 commit comments