mysql数据库,如何在登录mysql之后执行操作系统上的SQL脚本?

需求描述

  通过mysql客户端登录到mysql数据库,如何执行操作系统上的SQL脚本文件呢?

操作过程

1.编写测试脚本文件

[mysql@redhat6 scripts]$ cat SeCount.sql 
use test01
select count(*) from ts051;

 2.登录到mysql数据库中

复制代码
[mysql@redhat6 scripts]$ mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 20
Server version: 5.5.57-log MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 
复制代码

 3.通过source命令或者\.命令执行系统上的脚本

复制代码
mysql> source SeCount.sql
Database changed
+----------+
| count(*) |
+----------+
|   557107 |
+----------+
1 row in set (0.24 sec)

mysql> \. SeCount.sql
Database changed
+----------+
| count(*) |
+----------+
|   557107 |
+----------+
1 row in set (0.27 sec)

mysql> 
复制代码

 或者使用脚本的绝对路径

复制代码
mysql> source /home/mysql/workspace/scripts/SeCount.sql
Database changed
+----------+
| count(*) |
+----------+
|   557107 |
+----------+
1 row in set (0.23 sec)

mysql> \. /home/mysql/workspace/scripts/SeCount.sql
Database changed
+----------+
| count(*) |
+----------+
|   557107 |
+----------+
1 row in set (0.23 sec)

mysql> 
复制代码

 

备注:通过以上的方式,source 或 \. 都可以执行SQL脚本中的SQL语句。

 

文档床架时间:2018年3月20日13:03:24

posted @   Zhai_David  阅读(680)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
点击右上角即可分享
微信分享提示