Trim a string : Trim « String « SQL / MySQL






Trim a string

    
mysql>
mysql> CREATE   TABLE TEAMS
    ->         (TEAMNO         INTEGER      NOT NULL,
    ->          EmployeeNO       INTEGER      NOT NULL,
    ->          DIVISION       CHAR(6)      NOT NULL,
    ->          PRIMARY KEY    (TEAMNO)             );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql>
mysql> INSERT INTO TEAMS VALUES (1,  6, 'first');
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO TEAMS VALUES (2, 27, 'second');
Query OK, 1 row affected (0.00 sec)

mysql>
mysql> SELECT  TEAMNO, RTRIM(DIVISION) || ' division'
    -> FROM    TEAMS;
+--------+--------------------------------+
| TEAMNO | RTRIM(DIVISION) || ' division' |
+--------+--------------------------------+
|      1 |                              0 |
|      2 |                              0 |
+--------+--------------------------------+
2 rows in set, 2 warnings (0.00 sec)

mysql>
mysql> drop table teams;
Query OK, 0 rows affected (0.00 sec)

mysql>

   
    
    
    
  








Related examples in the same category

1.Trim strings
2.LTRIM(RTRIM(' SQL '))