1、字元函式
函式用法
length
計算位元組長度
concat
拼接字元
substr
擷取字串,1開始
instr
返回第乙個字串出現的位置
trim
消除字串前後空格
upper
字串大寫
lower
字串小寫
lpad
左填充欄位的查詢結果
rpad
右填充欄位的查詢結果
replace
替換字元
數學函式
函式用法
round
用於把數值字段捨入為指定的小數字數
ceil
產生大於或等於指定值(value)的最小整數
floor
產生小於或等於指定值(value)的最小整數
truncate
按精度擷取數字,不做捨入
mod取模
日期函式
函式用法
now當前時間+日期
curdate
當前日期
curtime
當前時間
year
只返回年份
month
只返回月份
monthname
返回月份名稱
str_to_date
將字串改為日期格式
date_to_format
將日期改為字串格式
尚矽谷之MySQL基礎
持久化 persistence 把資料儲存到可掉電式儲存裝置中以供之後使用。持久化的大多數時候是將記憶體中的資料儲存在資料庫中,當然也可以儲存在磁碟檔案 xml資料檔案中。方便管理資料 例如 快速的檢索等 db 資料庫 database 即儲存資料的 倉庫 它儲存了一系列有組織的資料。dbms 資料...
尚矽谷之JDBC
可以通過 drivermanager 類建立到資料庫的連線connection drivermanager 試圖從已註冊的 jdbc 驅動程式集中選擇乙個適當的驅動程式。public static connection getconnection string url public static c...
MySQL 尚矽谷 筆記2
案例1 查詢工資 12000的員工資訊 select from employees where salary 12000 案例2 查詢部門編號不等於90號的員工名和部門編號 select last name,department id from employees where department ...