摘要: 1.创建函数 mysql>delimiter // mysql>create function 函数名(参数1 参数1类型,...) returns 返回类型 >begin >return 返回值; >end >// mysql>select 函数名(参数1, 参数2, 。。。); >// 创建存数过程 建表create table user(id mediumint(8) unsigned not null auto_increment,name char(15) not null default "",pass char( 阅读全文
posted @ 2013-05-28 20:08 聊聊IT那些事 阅读(5055) 评论(0) 推荐(0)