MySql教程(15)--MySQL存储

1 存储过程的介绍 – 创建一个查询图书的编号、书名、价格和库存的存储过程。 delimiter // create procedure selectproc1() begin select book_id,book_name,price,store from bookinfo; end// delimiter ; – 调用存储过程 call selectproc1(); 2 创建和使用存储过程
相关文章
相关标签/搜索