MySQLのテキスト列内の文字列を検索しますか?
LIKE句を使用して、MySQLのテキスト列内の文字列を検索できます。構文は次のとおりです-
select *from yourTableName where yourColumnName like '%anyStringValue%';
上記の構文を使用するには、最初にテーブルを作成しましょう-
mysql> create table SearchTextDemo −> ( −> BookName TEXT −> ); Query OK, 0 rows affected (0.55 sec)
テーブルにいくつかの文字列を挿入します。クエリは次のとおりです-
mysql> insert into SearchTextDemo values('Let us C'); Query OK, 1 row affected (0.28 sec) mysql> insert into SearchTextDemo values('C in Depth'); Query OK, 1 row affected (0.14 sec) mysql> insert into SearchTextDemo values('C in Depth with Data Structure'); Query OK, 1 row affected (0.18 sec) mysql> insert into SearchTextDemo values('Introduction to Java'); Query OK, 1 row affected (0.17 sec) mysql> insert into SearchTextDemo values('Java in Depth'); Query OK, 1 row affected (0.13 sec)
selectステートメントを使用してすべてのレコードを表示します。クエリは次のとおりです-
mysql> select *from SearchTextDemo;
以下は出力です-
+--------------------------------+ | BookName | +--------------------------------+ | Let us C | | C in Depth | | C in Depth with Data Structure | | Introduction to Java | | Java in Depth | +--------------------------------+ 5 rows in set (0.00 sec)
これは、テキスト列内の特定の文字列を検索するためのクエリです-
mysql> select *from SearchTextDemo where BookName like '%in Depth%';
以下は出力です-
+--------------------------------+ | BookName | +--------------------------------+ | C in Depth | | C in Depth with Data Structure | | Java in Depth | +--------------------------------+ 3 rows in set (0.00 sec)
上記の出力例を見ると、「in Depth」という文字列が、データ型TEXTの列名「BookName」から検索されています。
-
JavaScriptで文字列を検索する方法は?
以下はJavaScriptで文字列を検索するためのコードです- 例 <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style>
-
MySQLデータベースで文字列をすばやく検索しますか?
全文検索を使用して、文字列をすばやく検索します。まずテーブルを作成しましょう- mysql> create table DemoTable1554 -> ( -> Title text -> ); Query OK, 0 rows affected (0.63 sec) 全文検索を作成するためのクエリは次のとおりです- mysql> create fulltext index faster_title on DemoTable1554(Title); Query OK, 0 rows