当前位置:网站首页>Linux server development, MySQL process control statement
Linux server development, MySQL process control statement
2022-07-07 07:50:00 【Tuen Mun pheasant calls me chicken】
Recommend a free open course of zero sound College , Personally, I think the teacher spoke well , Share with you :Linux,Nginx,ZeroMQ,MySQL,Redis,fastdfs,MongoDB,ZK, Streaming media ,CDN,P2P,K8S,Docker,TCP/IP, coroutines ,DPDK Etc , Learn now
1.IF sentence
IF condition(x=1) THEN
(SELECT 1;)
ELSEIF condition(x=2) THEN
(SELECT 2;)
ELSE
(SELECT 3;)
END IF;
2.CASE sentence
CASE valu(x)
WHEN value(1) TNEN SELECT 1;
WHEN value(2) TNEN SELECT 2;
ELSE …
END CASE;
3.WHILE sentence
lable:WHILE i<100 DO
SET s=s+i;
SET i=i+1;
IF i=50 THEN
– sign out while loop
LEAVE lable
END IF;
END WHILE;
4.LOOP sentence
loop_label:LOOP
SET s=s+1;
SET i=i+1;
IF i>100 THEN
– Introduction LOOP loop
LEAVE loop_label;
END IF;
END LOOP;
5.REPEAT sentence
REPEAT
SET s=s+i;
SET i=i+1;
UNTIL i>100
END REPEAT;
5.ITERATE sentence
IF(i mod 2) THEN
SET s=s+1;
ELSE
– Exit this cycle , Go on to the next cycle
ITERATE loop_bale;
END IF;
边栏推荐
- Hands on deep learning (IV) -- convolutional neural network CNN
- 解决问题:Unable to connect to Redis
- Gslx680 touch screen driver source code analysis (gslx680. C)
- 1142_ SiCp learning notes_ Functions and processes created by functions_ Linear recursion and iteration
- [2022 CISCN]初赛 web题目复现
- 微博发布案例
- 2022年茶艺师(中级)考试试题及模拟考试
- IO stream file
- [2022 ACTF]web题目复现
- 面试结束后,被面试官在朋友圈吐槽了......
猜你喜欢
![[2022 CISCN]初赛 web题目复现](/img/1c/4297379fccde28f76ebe04d085c5a4.png)
[2022 CISCN]初赛 web题目复现

IPv4 exercises

Numbers that appear only once
![[UTCTF2020]file header](/img/e3/818e2d531a06ab90de189055f634ad.png)
[UTCTF2020]file header

Leetcode-543. Diameter of Binary Tree

【经验分享】如何为visio扩展云服务图标
![[UTCTF2020]file header](/img/e3/818e2d531a06ab90de189055f634ad.png)
[UTCTF2020]file header
![[guess-ctf2019] fake compressed packets](/img/a2/7da2a789eb49fa0df256ab565d5f0e.png)
[guess-ctf2019] fake compressed packets

After the interview, the interviewer roast in the circle of friends

海思芯片(hi3516dv300)uboot镜像生成过程详解
随机推荐
CTF daily question day43 rsa5
海思芯片(hi3516dv300)uboot镜像生成过程详解
Leetcode-543. Diameter of Binary Tree
【webrtc】m98 screen和window采集
Pytest+allure+jenkins environment -- completion of pit filling
开源生态|打造活力开源社区,共建开源新生态!
[2022 actf] Web Topic recurrence
Jenkins remote build project timeout problem
idea添加类注释模板和方法模板
IO stream file
Operation suggestions for today's spot Silver
2022焊工(初级)判断题及在线模拟考试
Common method signatures and meanings of Iterable, collection and list
LeetCode 90:子集 II
leetcode:105. 从前序与中序遍历序列构造二叉树
Codeforces Global Round 19
[experience sharing] how to expand the cloud service icon for Visio
UWB learning 1
即刻报名|飞桨黑客马拉松第三期等你挑战
Write CPU yourself -- Chapter 9 -- learning notes