摘要: --------------创建不带参数的存储过程----------------- DELIMITER;; drop PROCEDURE if EXISTS selectStudent; create PROCEDURE 'selectStudent'() BEGIN select*from student; end;; DELIMITER; --------------带参数的存储过程... 阅读全文
posted @ 2018-02-23 16:49 ly77461 阅读(1830) 评论(0) 推荐(0) 编辑