当前位置:网站首页>Navicat Premium 创建MySql 创建存储过程
Navicat Premium 创建MySql 创建存储过程
2022-07-06 08:41:00 【菜鸟驿站2020】
MySQL 存储过程是一些 SQL 语句的集合,比如有时候我们可能需要一大串的 SQL 语句,或者说在编写 SQL 语句的过程中需要设置一些变量的值,这个时候我们就完全有必要编写一个存储过程。
编写存储过程并不是件简单的事情,但是使用存储过程可以简化操作,且减少冗余的操作步骤,同时,还可以减少操作过程中的失误,提高效率,因此应该尽可能的学会使用存储过程。
使用 Navicat Premium 工具创建存储过程,新建查询,输入语句,最后点击【运行】
#存在同名的存储过程则删除
DROP PROCEDURE IF EXISTS my_test2;
#创建存储过程,定义名称和变量。**变量名与字段名不要一样,有时会出现莫名的问题**
CREATE PROCEDURE my_test2(in usern VARCHAR(20),in nick VARCHAR(20))
BEGIN
SELECT * FROM sys_user where username = usern and nickname = nick;
END
调用存储过程
边栏推荐
- 角色动画(Character Animation)的现状与趋势
- Marathon envs project environment configuration (strengthen learning and imitate reference actions)
- China's high purity aluminum target market status and investment forecast report (2022 Edition)
- 广州推进儿童友好城市建设,将探索学校周边200米设安全区域
- Beijing invitation media
- 深度剖析C语言数据在内存中的存储
- CISP-PTE实操练习讲解
- Colorlog combined with logging to print colored logs
- 移位运算符
- Deep analysis of C language data storage in memory
猜你喜欢
Generator parameters incoming parameters
查看局域网中电脑设备
Leetcode question brushing (5.28) hash table
Current situation and trend of character animation
Let the bullets fly for a while
JS native implementation shuttle box
2022 Inner Mongolia latest water conservancy and hydropower construction safety officer simulation examination questions and answers
电脑清理,删除的系统文件
Tcp/ip protocol
C語言雙指針——經典題型
随机推荐
Shift Operators
LDAP應用篇(4)Jenkins接入
C语言双指针——经典题型
Tcp/ip protocol
China vanadium battery Market Research and future prospects report (2022 Edition)
Analysis of the source code of cocos2d-x for mobile game security (mobile game reverse and protection)
广州推进儿童友好城市建设,将探索学校周边200米设安全区域
JVM performance tuning and practical basic theory - Part 1
Excellent software testers have these abilities
从表中名称映射关系修改视频名称
C语言深度解剖——C语言关键字
Unified ordering background interface product description Chinese garbled
Precise query of tree tree
Swagger setting field required is mandatory
Bottom up - physical layer
Leetcode question brushing (5.28) hash table
TCP/IP协议
Rviz仿真时遇到机器人瞬间回到世界坐标原点的问题及可能原因
How to conduct interface test? What are the precautions? Nanny level interpretation
logback1.3. X configuration details and Practice