Home > Database > Mysql Tutorial > sql rtrim()与ltrim()函数的使用方法

sql rtrim()与ltrim()函数的使用方法

WBOY
Release: 2016-06-07 17:48:13
Original
2569 people have browsed it

SQL 中的 TRIM 函数是用来移除掉一个字串中的字头或字尾。最常见的用途是移除字首或字尾的空白。这个函数在不同的资料库中有不同的名称:

MySQL: TRIM(), RTRIM(), LTRIM()

Oracle: RTRIM(), LTRIM()


SELECT FIRSTNAME || ' ' || RTRIM(LASTNAME) AS "With RTRIM" FROM STUDENTS WHERE RowNum


SELECT 
   LTRIM(FIRSTNAME) AS "LTRIM"       
FROM    STUDENTS

SQL Server: RTRIM(), LTRIM()

各种 trim 函数的语法如下:

TRIM([[位置] [要移除的字串] FROM ] 字串): [位置] 的可能值为 LEADING (起头), TRAILING (结尾), or BOTH (起头及结尾)。 这个函数将把 [要移除的字串] 从字串的起头、结尾,或是起头及结尾移除。如果我们没有列出 [要移除的字串] 是什么的话,那空白就会被移除。

LTRIM(字串): 将所有字串起头的空白移除。

RTRIM(字串): 将所有字串结尾的空白移除。


WHERE RowNum

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template