mysql怎么样建存储过程
怎么样建一个带输入参数的存储过程,哪位可以给一个例子的代码?还有在mysql中建表的时候
比如说:
create table customer
(
id int auto_increment Primary Key not null,
name varchar(20) not null,
age int not null,
curDate dateTime not null
);
怎么样加默认值:
比如说:
create table customer
(
id int auto_increment Primary Key not null,
name varchar(20) not null,
age int default(20) not null,
curDate datetime default(now()) not null
);
上面这样加是错的,不知道正确的写法的怎么样的?
请高手指点,谢谢...