我正在尝试查找ColumnX
数据以a开头的所有数据\
.
是like '\%'
我在寻找什么呢?但\
必须在一开始.
I have a table that some column have spaces, like this:
Column A
-----------
"text 1"
" text 2"
"text 3 "
" text 4 "
Run Code Online (Sandbox Code Playgroud)
I want to do a select that return those columns with spaces (beginning or end)
" text 2"
"text 3 "
" text 4 "
Run Code Online (Sandbox Code Playgroud)
Is that possible?
After search for them, How could I update those columns to remove the spaces?