码迷,mamicode.com
首页 >  
搜索关键字:nullif    ( 111个结果
按月、按周列举统计最近10个月 10周的数据计算
10个月的数据统计、 select a.f_year,a.f_month , Convert(decimal(5,2),100-100*numQualified/nullif(numFeed,0)) KpiUnqualified , Convert(decimal(5,2),numQualified ...
分类:其他好文   时间:2021-06-02 13:05:34    阅读次数:0
Linux脚本实践
1、编写脚本,接受两个位置参数,magedu和/www,判断系统是否有magedu,如果没有则自动创建magedu用户,并自动设置家目录为/www#!/bin/bashif[$#-ne2];thenecho"Youmustinputtwoargs"exitfiidmagedu&>/dev/nullif[$?-ne0];thenuseradd-d$2$1echo"Createuser$
分类:系统相关   时间:2020-12-24 12:36:18    阅读次数:0
批量主机探测秘钥分发
#!/bin/bash#by wwp 2020-10-14#for openssh>ip.listpasswd=6rpm -q expect &>/dev/nullif [ $? -ne 0 ] ; then yum -y install expect >/dev/null && echo "exp ...
分类:其他好文   时间:2020-10-18 09:39:56    阅读次数:15
分数查询交互脚本
#!/bin/bashread-p"请输入你的分数:"nif[-z"$n"]``#判断是否为空thenecho"输入的数值不能为空"exit1#为空直接退出脚本fin1=echo$n|sed‘s/[0-9]//g‘#把数值替换成nullif[-n"$n1"]#如果不为空执行以下语句thenecho"请输入正确的数值(在0-
分类:其他好文   时间:2020-10-16 11:20:39    阅读次数:43
Oracle中的NVL,NVL2,NULLIF,COALESCE函数
1.NVL函数 NVL函数的格式如下:NVL(expr1,expr2) 含义是:如果oracle第一个参数为空那么显示第二个参数的值,如果第一个参数的值不为空,则显示第一个参数本来的值。 2 NVL2函数 NVL2函数的格式如下:NVL2(expr1,expr2, expr3) 含义是:如果该函数的 ...
分类:数据库   时间:2020-07-04 20:57:05    阅读次数:78
SQL中isnull、ifnull和nullif函数用法
首先是isnull函数。这个函数主要是用在sql语句中的where条件语句里,用来看某个字段是为空(null),要注意的是空字符串是不属于null的。 比如:select * from student where isnull(gender) ifnull函数呢?又是什么意思? ifnull主要是用 ...
分类:数据库   时间:2020-05-20 10:48:43    阅读次数:70
ping 检测,for循环
#!/bin/bashforIPin`cat/root/Desktop/ip.txt`doping-c3-i0.2-w3$IP&>/dev/nullif[$?-eq0]thenecho"Thishost$IPisexisted"elseecho"Thishost$IPisn‘texisted"fidone
分类:其他好文   时间:2020-04-27 15:34:11    阅读次数:187
for循环
#!/bin/bashread-p"Enterpassword:"PASSWDforUNAMEin`cat/root/Desktop/users.txt`doid$UNAME&>/dev/nullif[$?-eq0]thenecho"Alreadyexisted"elseuseradd$UNAME&>/dev/nullecho"$PASSWD"|passwd--stdi
分类:其他好文   时间:2020-04-27 15:09:27    阅读次数:58
并发取网段的ip地址并生成ansible的hosts
配置文件分ip和ansible_hosts,生成完成后需手动导入以免报错#!/bin/bashUsage(){echo$"USAGRE:/bin/bash$0"exit1}if["$#"-ne"0"];thenUsagefiCMD="ping-w2-c2"IP="192.168.1."fornin`seq1254`do{$CMD$IP$n&>/dev/nullif[$?-eq0];t
分类:其他好文   时间:2020-04-16 18:07:33    阅读次数:163
shell小脚本
shell 1、检查Mysql的健康状态 #!/bin/bashpgrep -x mysqld &> /dev/nullif [ $? -ne 0 ]thenecho “At time: `date` :MySQL is stop .”>> /日志路径/etc/init.d ...
分类:系统相关   时间:2020-01-06 17:41:30    阅读次数:121
111条   1 2 3 4 ... 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!