Oracle中的TRIM函數用于刪除字符串的前導或尾隨空格。它的基本語法如下:
```sql
TRIM([ leading | trailing | both ] trim_character FROM source_string)
```
其中,trim_character是要刪除的字符,source_string是要操作的字符串。可以使用leading、trailing或both關鍵字指定刪除空格的位置。默認情況下,TRIM函數刪除前導和尾隨空格。
例如,要刪除字符串前導和尾隨空格:
```sql
SELECT TRIM(' test ') FROM dual;
-- 結果為'test'
```
要刪除字符串前導空格:
```sql
SELECT TRIM(LEADING ' ' FROM ' test ') FROM dual;
-- 結果為'test '
```
要刪除字符串尾隨空格:
```sql
SELECT TRIM(TRAILING ' ' FROM ' test ') FROM dual;
-- 結果為' test'
```
要刪除字符串指定的字符(例如逗號):
```sql
SELECT TRIM(',' FROM ',test,') FROM dual;
-- 結果為'test'
```