MySQL
 Computer >> コンピューター >  >> プログラミング >> MySQL

MySQLクエリ結果をCSV形式で出力し、ファイルではなく画面に表示するにはどうすればよいですか?


出力されたMySQLクエリ結果をCSV形式で取得するには、concat()を使用します。構文は次のとおりです-

mysql> select concat(StudentId,',',StudentName,',',StudentAge) as CSVFormat from CSVFormatOutputs;

上記の構文を理解するために、テーブルを作成しましょう。テーブルを作成するためのクエリは次のとおりです-

mysql> create table CSVFormatOutputs
   -> (
   -> StudentId int not null auto_increment,
   -> StudentName varchar(20),
   -> StudentAge int,
   -> PRIMARY KEY(StudentId)
   -> );
Query OK, 0 rows affected (1.15 sec)

挿入コマンドを使用して、テーブルにいくつかのレコードを挿入します。クエリは次のとおりです-

mysql> insert into CSVFormatOutputs(StudentName,StudentAge) values('Mike',23);
Query OK, 1 row affected (0.26 sec)

mysql> insert into CSVFormatOutputs(StudentName,StudentAge) values('John',26);
Query OK, 1 row affected (0.19 sec)

mysql> insert into CSVFormatOutputs(StudentName,StudentAge) values('Sam',19);
Query OK, 1 row affected (0.20 sec)

mysql> insert into CSVFormatOutputs(StudentName,StudentAge) values('Carol',27);
Query OK, 1 row affected (0.59 sec)

mysql> insert into CSVFormatOutputs(StudentName,StudentAge) values('Bob',24);
Query OK, 1 row affected (0.15 sec)

selectステートメントを使用して、テーブルのすべてのレコードを表示します。クエリは次のとおりです-

mysql> select *from CSVFormatOutputs;

以下は出力です-

+-----------+-------------+------------+
| StudentId | StudentName | StudentAge |
+-----------+-------------+------------+
|         1 | Mike        |         23 |
|         2 | John        |         26 |
|         3 | Sam         |         19 |
|         4 | Carol       |         27 |
|         5 | Bob         |         24 |
+-----------+-------------+------------+
5 rows in set (0.00 sec)

これは、contact()メソッドを使用して画面にCSV(カンマ区切り値)形式で出力を取得するためのMySQLクエリです-

mysql> select concat(StudentId,',',StudentName,',',StudentAge) as CSVFormat from CSVFormatOutputs;

以下は、CSV形式のレコードを表示する出力です-

+------------+
| CSVFormat  |
+------------+
| 1,Mike,23  |
| 2,John,26  |
| 3,Sam,19   |
| 4,Carol,27 |
| 5,Bob,24   |
+------------+
5 rows in set (0.00 sec)

  1. MySQLのタイムゾーンを設定するにはどうすればよいですか?

    現在の時刻を知るには、SELECTステートメントでnow()関数を使用できます。クエリは次のとおりです- mysql> SELECT now(); 上記のクエリを実行した後、現在の時刻を取得します。以下は出力です- +---------------------+ | now() | +---------------------+ | 2018-10-06 12:57:25 | +---------------------+ 1 row in set (0.02 sec) タイムゾーンを設定するには、コマンドSETを使用できます。構文は次のとおりです- my

  2. MySQLクエリ出力をExcelまたは.txtファイルに保存する方法は?

    MySQLクエリ出力をテキストファイルに保存するには、OUTFILEコマンドを使用できます。 まずテーブルを作成しましょう。 create table SaveintoTextFile -> ( -> id int, -> name varchar(100) -> ); Query OK, 0 rows affected (0.55 sec) テーブルにレコードを挿入します。 insert into SaveintoTextFile values(3,David); Query OK, 1 row affected (0.14 sec