Answers for "lpad function in sql oracle"

SQL
1

lpad function in sql oracle

//this will get only first 4 characters from firstname

SELECT LPAD(firstname,4) FROM customers;
Posted by: Guest on January-31-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language