首页 > 数据库技术 > 详细

MySQL Cookbook学习笔记第一章

时间:2014-04-26 00:13:52      阅读:645      评论:0      收藏:0      [点我收藏+]

1,create databse cookbook

2,给数据库cookbook创建一个用户burness,密码为123456

grant  all on cookbook.* to ‘burness’on ‘localhost’ identified by ‘123456’

3,生成一个备份

mysqldump –h localhost –u burness –p cookbook > cookbook.sql

生成的cookbook.sql内容如下:

4,mysql从文件中读取语句

mysql cookbook < filename

eg:mysql cookbook < limbs.sql

limbs.sql内容如下:

或者使用source ,eg : source test.sql

5,mysql还能使用pipe使用程序的查询命令

6,输出重定向:-H -X可以生成HTML,XML内容

mysql  -u burness –p cookbook -e “select * from limbs where legs=0” >1.txt

mysql –H -u burness –p cookbook -e “select * from limbs where legs=0” >1.html

mysql –X -u burness –p cookbook -e “select * from limbs where legs=0” >1.xml

bubuko.com,布布扣bubuko.com,布布扣

7,当过长的查询输出到屏幕需要一行来垂直地显示输出使用\G代替;

select * from limbs\G

bubuko.com,布布扣

8,记录交互式的mysql对话

mysql –u burness –p cookbook --tee=tmp.out cookbook

\T tmp.out

记录的命令及显示会输出到tmp.out

\t来停止记录

tmp.out 内容如下:

9,在mysql中使用自己定义的变量

@ var_name : value

eg: select @id := cust_id from customers where cust_id=’customer name’;

delete from orders where cust_id=@id;

delete from custers where cust_id=@id;

MySQL Cookbook学习笔记第一章,布布扣,bubuko.com

MySQL Cookbook学习笔记第一章

原文:http://www.cnblogs.com/burness/p/3690069.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!