MySQL TRIM()函數用于從字符串中刪除特定的后綴、前綴或兩者。TRIM()函數的工作原理可以通過其語法來理解 ?
語法
TRIM([{BOTH | LEADING | TRAILING} [str_to_remove] FROM] string)
登錄后復制
這里,
- 參數 BOTH 表示要從字符串中刪除左右兩側的前綴。LEADING 參數表示僅要刪除的前導前綴。TRAILING 參數表示僅刪除尾隨前綴。Str_to_remove 是參數,表示我們要從字符串中刪除的字符串。Str_to_remove 是參數,表示我們要從字符串中刪除的字符串。 >字符串參數表示必須刪除前綴的字符串。
示例
在這里,
- BOTH參數表示要從字符串中同時刪除左側和右側的前綴。LEADING參數表示只刪除前綴。TRAILING參數表示只刪除后綴。Str_to_remove是要從字符串中刪除的字符串參數。String參數表示要從中刪除前綴的字符串。
示例
mysql> Select TRIM(BOTH '0' FROM '0100'); +----------------------------+ | TRIM(BOTH '0' FROM '0100') | +----------------------------+ | 1 | +----------------------------+ 1 row in set (0.00 sec) mysql> Select TRIM(BOTH '**' from '**tutorialspoint.com**'); +------------------------------------------------+ | TRIM(BOTH '**' from '**tutorialspoint.com**') | +------------------------------------------------+ | tutorialspoint.com | +------------------------------------------------+ 1 row in set (0.00 sec) mysql> Select TRIM(Trailing '**' from '**tutorialspoint.com**'); +----------------------------------------------------+ | TRIM(Trailing '**' from '**tutorialspoint.com**') | +----------------------------------------------------+ | **tutorialspoint.com | +----------------------------------------------------+ 1 row in set (0.00 sec) mysql> Select TRIM(Leading '**' from '**tutorialspoint.com**'); +---------------------------------------------------+ | TRIM(Leading '**' from '**tutorialspoint.com**') | +---------------------------------------------------+ | tutorialspoint.com** | +---------------------------------------------------+ 1 row in set (0.00 sec)
登錄后復制
以上就是MySQL TRIM() 函數的用途是什么?的詳細內容,更多請關注www.92cms.cn其它相關文章!