if 語句 總結筆記

2022-09-15 13:39:12 字數 466 閱讀 2263

語法:

if(condition) statement1;

else statement2;

graph td

a[j**a考試] -->|幾天後| b(收到成績單)

b --> c

c -->|j**a.score<60 | d[不爭氣的東西 一頓毒打]

c -->|j**a.score>=60,j**a.score<90| e[繼續努力 成功續命]

c -->|j**a.score>=90 | f[寶貝真聰明 幸福生活]

語法:

if (condition1) statement1;

else if (condition2) statement2;

else statement3;

else if能巢狀無數次,只要遇到正確的condition,就執行相關語句,然後結束if。

hive 語句總結 HiveQL查詢語句總結

本文寫作目的是整理出乙份帶注釋的cheatsheet。內容組織形式為查詢語句,例項,原理 基本查詢語句 show databases create database retail use retail create table id val type row format delimited fie...

Oracle學習筆記 常用的sql語句總結

在mysql中,直接使用select from limit 10即可,而oracle中沒有關鍵字limit。但是可以使用rownum來替代。例如,返回多條 10 資料 select from yourtable where rownum 10 1.檢視伺服器端編碼select userenv lan...

MySql Sql語句總結

建表語句 create table class id int primary key,class char 255 name varchar 4000 hobby text int 和 integer 是一樣的,只是為了簡寫罷了,主鍵宣告直接跟在定義後面,char和varchar char是固定長度...