oracle 的 where 1=2

create table copy_route_header as select * from route_header where 1=2;
这句意思是,创建相同的表,但不复制原来表数据

如果不带条件相当于复制一张表。
1=2表示没有其它条件时不查出数据,用作where拼接sql句子。。

1=1 为true,任何情况下都执行
1=2 为false,不执行

服务器控制台分析mysql

一.用if判断MySQL 运行状态(shell脚本)
oracle 的 where 1=2_第1张图片
以上是简单的用shell 脚本判断mysql服务运行状态,如果MySQL是stop 状态,我们会对MySQL服务进行重启,下图是测试后的结果:
oracle 的 where 1=2_第2张图片
二.监控mysql服务性能,状态,进程
oracle 的 where 1=2_第3张图片
oracle 的 where 1=2_第4张图片
以上是sh文件源码
执行后的效果
oracle 的 where 1=2_第5张图片
oracle 的 where 1=2_第6张图片
另外推荐一篇博客:http://www.2cto.com/database/201304/200737.html

你可能感兴趣的:(数据库,oracle,数据库)