gpt4 book ai didi

mysql - 是否有一个简单的 CLI 命令可以将 SELECT 语句的速度复制到 MySQL 中的文本文件(没有数据)中?

转载 作者:行者123 更新时间:2023-11-29 01:50:11 24 4
gpt4 key购买 nike

假设我跑:

CREATE TABLE t1 AS
SELECT ssn, title
FROM employees
WHERE title = "Dictator"

我想自动保存到一个文本文件中:

Query OK, 1118933 rows affected (3.84 sec)
Records: 1118933 Duplicates: 0 Warnings: 0

如果您还可以在其上方保存查询,则可加分 :)!

CREATE TABLE t1 AS
SELECT ssn, title
FROM employees
WHERE title = "Dictator"

Query OK, 1118933 rows affected (3.84 sec)
Records: 1118933 Duplicates: 0 Warnings: 0

最佳答案

您可以在 mysql 客户端中使用 tee 内置命令。

我在 MacOS 上测试过这个:

mysql> tee out
Logging to file 'out'

mysql> create table test.mytable as select sleep(2);
Query OK, 1 row affected (2.09 sec)
Records: 1 Duplicates: 0 Warnings: 0

mysql> exit;
Bye

$ cat out
mysql> create table test.mytable as select sleep(2);
Query OK, 1 row affected (2.09 sec)
Records: 1 Duplicates: 0 Warnings: 0

mysql>

关于mysql - 是否有一个简单的 CLI 命令可以将 SELECT 语句的速度复制到 MySQL 中的文本文件(没有数据)中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47355953/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com