1. left函數, 對查詢字段的字符串內容進行截取,用法select left(content,50) as summary from article; 在這裡的意思是只查詢content列內容的前50個字符,在這裡漢字也只當作一個字符。
2. right函數,與left函數剛好相反,它對內容從後面進行截取。
3. upper函數,對查詢的內容中的小寫字母進行大寫處理。select upper(title) as title from article;
4. lower函數,和upper剛好相反,它是進行小寫處理。
5. substr函數,對字符串從指定位置,進行指定長度的裁剪,它比left和right更靈活。 select substr(content, 10, 50) from article, 從第10個字符(第一個字符為1不為0)開始截取50個字符;select substr(content,10) from article,從第10個字符開始截取到末尾;select substr(content, –20) from article,從末尾起截取20個字符。