Data Archive
- Data Archive 6.4.4
- All Products
RIGHT ( char value-expression, integer length)
|
|
|---|---|
|
|
CREATE TABLE string_table (col1 VARCHAR(20)); INSERT INTO string_table VALUES ('isopropyl'); 1 row affected SELECT RIGHT(col1, 3) FROM string_table; 1 row selected 1 --- pyl