拼接字段
select concat(——,』(』,——,』)』,)
from ——
order by ——;
select語句拼接第一空加左括號加第二空加右括號
trim( ) 去掉字串左右兩邊的空格
ltrim( ) 去掉字串左邊的空格
rtrim( ) 去掉字串右邊的空格
使用別名
select concat(——,』(』,——,』)』,) as ——
from ——
order by ——;
給拼接字段形成的計算列乙個名字,使客戶端可以按名稱引用此列
執行算術計算
select ——,——
——*—— as ——
from ——
where ——=——;
將第一空數值與第二空數值相乘作為新的計算列
算術計算操作符
如* 乘;/ 除;+ 加;- 減
MySQL學習筆記(六)
今天介紹一下字串相關的mysql函式。length str 求str的長度。lcase str 與lower str 將字串變成小寫。ucase str upper str 將字串變成大寫。strcmp str1,str2 比較字串大小,第乙個比第二個小返回 1,第乙個比第二個大返回1,如果相等返回...
mysql學習筆記(六)
25效能優化 優化原則 減少系統的瓶頸,減少資源的占用,增加系統的反應速度。使用show status語句查詢mysql資料庫的效能引數 show status like value value對應的引數 connection 連線mysql伺服器的次數 uptime mysql伺服器的上線時間 s...
六天玩轉mysql筆記 mysql學習筆記 第六天
改變資料表的結構 alter table tb name action,action,action 使用alter table 之前,需要檢視資料表的當前定義,需要執行show create table 語句 alter table tb name modify columns 資料型別 alter...