文章不在长,坚持不懈记录下努力前行的脚步
发布时间:2015-11-24 17:55:07
20151124主题:MySQL 客户端程序(来自MySQL reference manual 4.1)=============================================mysqld:包含MySQL server启停脚本 -- /etc/rc.d/init.d/mysqldmysqld_safe:server启动脚本。/usr/bin/mysqld_safemysql.server:执行mysqld_safe,存放路径$basedir/support-files/mysql.server;mysql.........【阅读全文】
发布时间:2015-11-23 16:46:08
主题:msyql批处理脚本实例(来自MySQL reference manual 3.5)=============================================#!/bin/shmysql --user='root' --password='mysql123' -h 120.26.81.89 --database='qwifi'>>qwifi.out......【阅读全文】
发布时间:2015-11-19 09:30:14
查询数据库的库表信息获取建表语句show create table tab_name;获取表的索引信息show index from tab_name;......【阅读全文】
发布时间:2015-11-17 17:15:41
20151117主题:creating and selecting a database(来自MySQL reference manual 3.3.1)=============================================1.创建数据库创建数据库时,类unix平台,与sql关键字不同,数据库名大小写敏感。如果创建数据库时报一下的错误,表明你没有创建数据库的权限。you get an error such as ERROR 1.........【阅读全文】
发布时间:2015-11-10 15:59:16
20151110主题:mysql聚簇索引--只针对innodb(来自MySQL reference manual 14.2.10.1)=============================================Every InnoDB table has a special index called the clustered index where the data for the rows is stored. Typically, the clustered index is synonymous .........【阅读全文】