熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> MySQL >> 正文

數據庫工程師:MySQL截取字符串函數方法[2]

2022-06-13   來源: MySQL 

    說明substring(被截取字段從第幾位開始截取)

    substring(被截取字段從第幾位開始截取截取長度)

    例select substring(content) as abstract from my_content_t

    select substring(content) as abstract from my_content_t

    (注如果位數是負數 如 則是從後倒數位數到字符串結束或截取的長度)

    按關鍵字截取字符串

    substring_index(strdelimcount)

    說明substring_index(被截取字段關鍵字關鍵字出現的次數)

    例select substring_index(blogchinabytecom) as abstract from my_content_t

    結果blogchinabyte

    (注如果關鍵字出現的次數是負數 如 則是從後倒數到字符串結束)

    結果chinabytecom

[]  []  


From:http://tw.wingwit.com/Article/program/MySQL/201311/29752.html
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.