Mega Code Archive

 
Categories / PostgreSQL / String Functions
 

Substr(1234, 3)

postgres=# SELECT substr('1234', 3);  substr --------  34 (1 row) postgres=#