您的位置:首页 > 数据库 > MySQL

mysql_Calculator

2016-04-26 18:53 357 查看
[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 % 21

[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