首页 > 数据库 >mysql终端执行SQL,忽略报错,打印结果

mysql终端执行SQL,忽略报错,打印结果

时间:2023-01-11 16:58:04浏览次数:56  
标签:+------------------------------+ -------------- mysql version 报错 SQL test select

mysql -h 10.24.xx.xx  -u root -p  -vvv -s -N -f < test.sql > output 2>&1

 

测试脚本test.sql

[root@instance-557laxgo ~]# cat test.sql
select version();
selects version();
select version();

  

结果output

[root@instance-557laxgo ~]# cat output
--------------
select version()
--------------

+------------------------------+
| 5.7.17-baidu-rds-3.0.0.1-log |
+------------------------------+
1 row in set (0.01 sec)

--------------
selects version()
--------------

ERROR 1064 (42000) at line 2: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'selects version()' at line 1
--------------
select version()
--------------

+------------------------------+
| 5.7.17-baidu-rds-3.0.0.1-log |
+------------------------------+
1 row in set (0.00 sec)

Bye

  

标签:+------------------------------+,--------------,mysql,version,报错,SQL,test,select
From: https://www.cnblogs.com/muzisanshi/p/17044233.html

相关文章

  • SQLSERVER自动备份数据库
    1.通过操作系统的定时任务执行创建两个文件,auto.bat和auto.sql,使用bat调用sql文件中的代码段auto.bat内容sqlcmd-Slocalhost,2433-Usa-PAa@123456-ddbname-i......
  • SqlServer日志清理
      USEABC--数据库名select*from sys.database_files--查看日志文件名USE[master]   GO   ALTERDATABASEABCSETRECOVERYSIMPLEWITHNO_WAIT--TechM......
  • SqlSessionFactory工厂
    模板:1privatestaticSqlSessionFactorysqlSessionFactory;2static{3Stringresource="mybatis-config.xml";4InputStreaminputSt......
  • Python之subprocess 执行报错
    问题我用subprocess执行命令查主机Ip报错​command=""""grep{0}/etc/hosts|awk'{print$1}'"""".format(socket.gethostname())KeyError:'print$1'......
  • JDBC3 - 优化SQL语句
    SQL语句优化statement-->preparedStatementSQL语句的拼接受限,对于①多条语句和②复杂类型无法实现操作,且易受③注入攻击statement只适合静态SQL语句,动态SQL语句的......
  • DataX工具 SQLServer导入MongoDB
    DataX工具SQLServer导入MongoDB一、前言最开始使用的是数据库SQLServer,后因需求变更,需要将sqlserver数据迁移至mongodb。经过查询发现,阿里开源数据库迁移软件Dat......
  • Xamarin 中使用 SQLite
    1. NuGet中安装下面两个组件sqlite-net-pclSQLitePCLRaw.bundle_green   2. 创建表格//创建表结构[Table("Valuation")]publicclassValuation......
  • mysql聚合索引
    1.背景最近频繁出现慢SQL导致系统性能问题,于是决定针对索引进行一些优化。一些表结构本身已经有了不少索引,如果再继续添加索引,势必会影响到插入数据的性能。那么,是否可以......
  • Android端使用findHomography方法时报错
    错误如下:Unknownerrorcode-28(Theinputarraysshouldhaveatleast4correspondingpointsetstocalculateHomography)infindHomography,file/build/maste......
  • 【Vue】eslint报错“Component name “XXX“ should always be multi-word”的解决方
    第一种解决方法:修改组件名称为大驼峰,不要用系统中命令常见的名称。第二种解决方法:在根目录下,打开【.eslintrc.js】文件,如果没有,就新建,内容module.exports={root......