码迷,mamicode.com
首页 > 数据库 > 详细

mysql_Calculator

时间:2016-04-26 22:18:24      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:mysql_calculator

[root@192 ~]# ./mysql_Calculator.sh 9 - 2

7


[root@192 ~]# ./mysql_Calculator.sh 9 + 2

11


[root@192 ~]# ./mysql_Calculator.sh 9 \* 2

18


[root@192 ~]# ./mysql_Calculator.sh 9 / 2 

4.5000


[root@192 ~]# ./mysql_Calculator.sh 9 % 2

1


[root@192 ~]# cat mysql_Calculator.sh

#!/bin/bash


/usr/bin/mysql -p3306 --socket=/data/3306/mysql.sock -e "select $1 $2 $3;" |awk ‘NR==2{print $0}‘ 



mysql_Calculator

标签:mysql_calculator

原文地址:http://wangqh.blog.51cto.com/5367393/1768004

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!