摘要: 创建索引的语法格式:– 创建普通索引:• create index 索引名称 on 表名(列)• alter table 表名 add index 索引名称 (列)– 创建唯一索引:• create unique index 索引名称 on 表名(列名)• alter table 表名 add un 阅读全文
posted @ 2016-09-23 17:27 D.零下的小书屋 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 其实就是造测试数据 eg: delimiter $$ //定义结束符号create procedure test_p11(count int)(默认是in类型)begindeclare name varchar(20);//定义变量declare phone int(20);declare i in 阅读全文
posted @ 2016-09-23 17:18 D.零下的小书屋 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 命令行执行mysqldump mysqldump -uuser -pPassword dbnametable [option] > xx.sql;mysqldump• Mysqldump常用参数:• --all-databases , -A 导出全部数据库• --add-drop-database 阅读全文
posted @ 2016-09-23 14:51 D.零下的小书屋 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 授权就是为某个用户赋予某些权限。例如,可以为新建的用户赋予查询所有数据库和表的权限。合理的授权能够保证数据库的安全。不合理的授权会使数据库存在安全隐患。 MySQL中使用GRANT关键字来为用户设置权限。Grant 命令的格式grant 权限 on 数据库对象 to 用户比如说增加一个超级用户,拥有 阅读全文
posted @ 2016-09-23 11:48 D.零下的小书屋 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 子查询 --1、子查询必须位于圆括号里 --2、除非主查询理有多个字段进行比较,否则子查询的select子句里只能有一个字段 --3、子查询里不能使用order by 子句。在子查询里,我们可以利用 group by实现order by 功能 --4、返回多条记录的子查询只能与操作符配合使用(如:i 阅读全文
posted @ 2016-09-23 11:20 D.零下的小书屋 阅读(271) 评论(0) 推荐(0) 编辑