首頁 >資料庫 >mysql教程 >MySQL TRIM() 函數的用途是什麼?

MySQL TRIM() 函數的用途是什麼?

WBOY
WBOY轉載
2023-09-09 08:25:101138瀏覽

MySQL TRIM() 函数的用途是什么?

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() 函數的用途是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除