
MySQL必知必会
Flerken101
github主页:https://github.com/Flerken101
展开
-
笔记——如何使用git把本地代码上传到github上 以及 可能出现的两个报错
为了阅读节省时间,提前列出可能出现的两个报错:A:warning: LF will be replaced by CRLF.The file will have its original line endings in your working directory.B:failed to push some refs to…1,第一步:git init建立git仓库,新建一个本地仓库,其...原创 2019-10-08 20:04:05 · 285 阅读 · 0 评论 -
关于MySQL建立智能储存过程的初步理解
DELIMITER //CREATE PROCEDURE ordertotal( IN onumber INT, OUT ototal DECIMAL(8,2))BEGIN SELECT Sum(item_price*quantity) FROM orderitems WHERE order_num = onumber INTO ototal;END/...原创 2019-10-11 15:26:41 · 214 阅读 · 0 评论