
数据库
叶小幺
这个作者很懒,什么都没留下…
展开
-
如何使用免安装版的mysql(windows)
如何使用免安装版的mysql(windows)原创 2015-06-18 21:38:11 · 587 阅读 · 0 评论 -
MySQL存储过程简单记录
1. 基本格式 drop procedure if exists p_test;create procedure p_test(in id int, out name VARCHAR(100))BEGIN select id; select uname into name from t_user where uid = id;end; drop ... create... 类原创 2016-05-09 21:25:09 · 1286 阅读 · 0 评论