Anda sedang mencari TRIM .
UPDATE FOO set FIELD2 = TRIM(FIELD2);
Sepertinya perlu disebutkan bahwa TRIM dapat mendukung beberapa jenis spasi, tetapi hanya satu per satu dan akan menggunakan spasi secara default. Namun, Anda dapat membuat sarang TRIM
s.
TRIM(BOTH ' ' FROM TRIM(BOTH '\n' FROM column))
Jika Anda benar-benar ingin menyingkirkan semua spasi putih dalam satu panggilan, sebaiknya gunakan REGEXP_REPLACE
bersama dengan [[:space:]]
notasi. Ini contohnya:
SELECT
-- using concat to show that the whitespace is actually removed.
CONCAT(
'+',
REGEXP_REPLACE(
' ha ppy ',
-- This regexp matches 1 or more spaces at the beginning with ^[[:space:]]+
-- And 1 or more spaces at the end with [[:space:]]+$
-- By grouping them with `()` and splitting them with the `|`
-- we match all of the expected values.
'(^[[:space:]]+|[[:space:]]+$)',
-- Replace the above with nothing
''
),
'+')
as my_example;
-- outputs +ha ppy+