mysql基本的四條語句(增刪改查)
具體可檢視
獲取時間
select current_date();
2018-08-09
select current_time();
11:57:05
select current_timestamp();
2018-08-09 11:57:20
select unix_timestamp()
1533787053
加密:
-- 為密碼字段加密
update test set da=sha1(da)
char_length(str):返回str所包含的字元數,乙個多位元組字元算乙個字元
length(str): 返回字串的位元組長度,如utf8中,乙個漢字3位元組,數字和字母算乙個位元組
concat(s1, s1, …): 返回連線引數產生的字串
concat_ws(x, s1, s2, …): 使用連線符x連線其他引數產生的字串
insert(str,pos,len,newstr):返回str,其起始於pos,長度為len的子串被newstr取代。
若pos不在str範圍內,則返回原字串str
若str中從pos開始的子串不足len,則將從pos開始的剩餘字元用newstr取代
計算pos時從1開始,若pos=3,則從第3個字元開始替換
lower(str)或者lcase(str):
upper(str)或者ucase(str):
left(s,n):返回字串s最左邊n個字元
right(s,n): 返回字串最右邊n個字元
ltrim(s):刪除s左側空格字元
rtrim(s):
trim([ [remstr] from] str)或trim([remstr from] str):從str中刪除remstr, remstr預設為空白字元
repeat(str,count):返回str重複count次得到的新字串
replace(str,from_str,to_str): 將str中的from_str全部替換成to_str
space(n):返回長度為n的空白字串
strcmp(str1,str2):若str1和str2相同,返回0, 若str1小於str2, 返回-1, 否則返回1.
substring(str,pos), substring(str from pos), 1. substring(str,pos,len), substring(str from pos for len),mid(str,pos,len): 獲取特定位置,特定長度的子字串
select substr(sdept,2) from student where sno=019
day21 學習總結
string s new string 建立乙個空的字串序列 string s new string hello 建立乙個內容為 hello 的字串 string s hello 建立乙個內容為 hello 的字串 string s new string char chars 通過字元陣列建立乙個字...
每日演算法 day 21
那些你早出晚歸付出的刻苦努力,你不想訓練,當你覺的太累了但還是要咬牙堅持的時候,那就是在追逐夢想,不要在意終點有什麼,要享受路途的過程,或許你不能成就夢想,但一定會有更偉大的事情隨之而來。mamba out 2020.3.4 記憶化搜尋 include include include include...
Day2 1 迴圈結構
課件位址 全部 課程目標 1.while 型迴圈 2.for.in 迴圈 3.range 函式4.break 和continue 語句及迴圈中的 else 子句計算機執行 流程 迴圈是讓計算機做重複任務的有效方法 while迴圈和break n 1 while n 100 if n 10 當n 11...