mysql> select * from 51cto;
------ -----------
| id | name |
------ -----------
| 1 | 51cto.com |
| 2 | 163.com |
| 3 | qq.com |
------ -----------
3 rows in set (0.00 sec)
插入并且显示记录
3、
mysql> delete from 51cto where name = ''51cto.com'';
Query OK, 1 row affected (0.00 sec)
删除一条记录
4、
mysql> select * from 51cto where id >= 2;
------ ---------
| id | name |
------ ---------
| 2 | 163.com |
| 3 | qq.com |
------ ---------
2 rows in set (0.00 sec)
查询特定的记录
4、罗列简单的mysql数据类型:
******************************************************
数据类型 描述
char 固定长度的字符串值
varchar 可变长度的字符串值
int 整数型
float 浮点值
boolean 布尔值(true/false)
date 日期值,格式yyyy-mm-dd
time 时间值,格式为hh:mm:ss
timestamp 日期和时间值
text 长字符串值
BLOB 大型二进制值,如图像或视频剪辑
******************************************************
OK,到这里处理表的工作也完成,接下来就是在脚本中应用数据库了~~
四、在脚本中使用数据库
1、查找程序
需要是的linux系统找到mysql软件包的安装路径,这里我们可以通过which命令才设置为变量实现:
[root@wzp ~]# cat linux-linkto-mysql
mysql=`which mysql`
echo $mysql
[root@wzp ~]# chmod u x linux-linkto-mysql
[root@wzp ~]# ./linux-linkto-mysql
/usr/bin/mysql
通过这种方式就好办了,脚本获取到mysql的安装位置
2、登陆服务器
可以通过在脚本中指定登陆的用户,如下脚本:
[root@wzp ~]# cat login-mysql
#!/bin/bash
mysql=`which mysql`
$mysql -u 51cto -p
[root@wzp ~]# chmod u x login-mysql
[root@wzp ~]# ./login-mysql
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 5
Server version: 5.0.45 Source distribution
Type ''help;'' or ''h'' for help. Type ''c'' to clear the buffer.
mysql> quit
Bye
当然,也许这种交互式脚本不是很方便,也就跟脚本开发的理念相违背,我们可以在脚本中放置密码,如下:
[root@wzp ~]# cat login-mysql
#!/bin/bash
mysql=`which mysql`
$mysql -u 51cto -p51cto
[root@wzp ~]# sh login-mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 12
Server version: 5.0.45 Source distribution
Type ''help;'' or ''h'' for help. Type ''c'' to clear the buffer.
mysql> quit
Bye
通过这方法可以解决非交互式问题,但是在脚本中附带用户密码也是不安全并且麻烦的事情.
,我们可以通过创建一个用户本身只读可执行的隐藏文件,通过调用该文件解决非交互式问题,也增加安全性,如下:
[root@wzp ~]# ll .passwd-51cto
-r-x------ 1 root root 11 02-12 17:22 .passwd-51cto
[root@wzp ~]# cat .passwd-51cto
echo 51cto
[root@wzp ~]# cat login-mysql
#!/bin/bash
mysql=`which mysql`
passwd=`$HOME/.passwd-51cto`
$mysql -u 51cto -p$passwd
[root@wzp ~]# ./login-mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 25
Server version: 5.0.45 Source distribution
|