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

mysql随笔记录

2015-12-01 18:43 453 查看
本地登录:mysql -uroot -pwujingtao

//存储过程
use tlbbdb;

delimiter //

drop procedure if exists test//

create procedure test(out s int)

begin

select count(*) into s from t_ability;

end//

delimiter ;

//新建用户 http://blog.chinaunix.net/uid-14735472-id-3495715.html
mysql int(11)
指定整数长度,11位为百亿

//导入导出 http://www.chinaitlab.com/linux/MYSQL/956215.html //导出
mysqldump -ubpuser -pD95VjVdvsME8SFe6W3lYxwzrG7vRDxuZ -h127.0.0.1 blackstone > c:/blackhole.sql

root密码错误 http://blog.csdn.net/leandzgc/article/details/17048483
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: