MySQLのフィールドのすべての行のすべての文字をカウントするにはどうすればよいですか?
フィールドのすべての行のすべての文字をカウントする構文は次のとおりです-
select sum(char_length(yourColumnName)) AS anyAliasName from yourTableName;
上記の構文を理解するために、テーブルを作成しましょう。
テーブルを作成するためのクエリは次のとおりです-
mysql> create table CountAllCharactersDemo -> ( -> UserId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> UserName varchar(20), -> UserSubject text -> ); Query OK, 0 rows affected (0.47 sec)>
挿入コマンドを使用して、テーブルにいくつかのレコードを挿入します。クエリは次のとおりです-
mysql> insert into CountAllCharactersDemo(UserName,UserSubject) values('Larry','Introduction To Java'); Query OK, 1 row affected (0.19 sec) mysql> insert into CountAllCharactersDemo(UserName,UserSubject) values('Mike','Introduction To Computer Networks'); Query OK, 1 row affected (0.21 sec) mysql> insert into CountAllCharactersDemo(UserName,UserSubject) values('Sam','Introduction To C'); Query OK, 1 row affected (0.18 sec) mysql> insert into CountAllCharactersDemo(UserName,UserSubject) values('Carol','Introduction To Python'); Query OK, 1 row affected (0.25 sec) mysql> insert into CountAllCharactersDemo(UserName,UserSubject) values('David','Introduction To Spring And Hibernate Framework'); Query OK, 1 row affected (0.15 sec)
selectステートメントを使用して、テーブルのすべてのレコードを表示します。クエリは次のとおりです-
mysql> select *from CountAllCharactersDemo;
これが出力です-
+--------+----------+------------------------------------------------+ | UserId | UserName | UserSubject | +--------+----------+------------------------------------------------+ | 1 | Larry | Introduction To Java | | 2 | Mike | Introduction To Computer Networks | | 3 | Sam | Introduction To C | | 4 | Carol | Introduction To Python | | 5 | David | Introduction To Spring And Hibernate Framework | +--------+----------+------------------------------------------------+ 5 rows in set (0.00 sec)
これは、MySQLのフィールドのすべての行のすべての文字をカウントするためのクエリです。
ケース1 −全長を計算します。
クエリは次のとおりです-
mysql> select sum(char_length(UserSubject)) AS AllCharactersLength from CountAllCharactersDemo;
これが出力です-
+---------------------+ | AllCharactersLength | +---------------------+ | 138 | +---------------------+ 1 row in set (0.00 sec)
ケース2 −各行の長さを計算するクエリ-
mysql> select UserId,UserName,UserSubject,char_length(UserSubject) AS Length from CountAllCharactersDemo;
以下は出力です-
+--------+----------+------------------------------------------------+--------+ | UserId | UserName | UserSubject | Length | +--------+----------+------------------------------------------------+--------+ | 1 | Larry | Introduction To Java | 20 | | 2 | Mike | Introduction To Computer Networks | 33 | | 3 | Sam | Introduction To C | 17 | | 4 | Carol | Introduction To Python | 22 | | 5 | David | Introduction To Spring And Hibernate Framework | 46 | +--------+----------+------------------------------------------------+--------+ 5 rows in set (0.00 sec)
-
1つのMySQLクエリで2つのテーブルの行をカウントするにはどうすればよいですか?
まずテーブルを作成しましょう- mysql> create table DemoTable1 ( Name varchar(40) ); Query OK, 0 rows affected (0.81 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql> insert into DemoTable1 values('Chris'); Query OK, 1 row affected (0.48 sec) mysql> insert into DemoTable1 values('Robe
-
文字列フィールドの数字で行をグループ化するMySQLクエリ?
これをモミ、+演算子の助けを借りて文字列フィールドと0を連結することができます。ここでのシナリオは、数値の「 9844」をフェッチする必要があるようなものです。 文字列フィールド「9844Bob」からの「」 」。 まずテーブルを作成しましょう- mysql> create table DemoTable ( StudentId varchar(100) ); Query OK, 0 rows affected (0.92 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql> insert into DemoTabl