您的位置:首页 > 其它

简单使用存储过程

2011-01-04 10:32 134 查看
1、创建存储过程

create procedure usp
as
select * from age

2、执行存储过程

execute usp

3、删除存储过程
drop procedure usp
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: