Answers for "sql query to print first three characters"

SQL
0

display first three characters sql

SUBSTRING( string, start_position, length );
SELECT SUBSTRING( column_name, 1, 3 ) FROM table_name;
Posted by: Guest on August-08-2021

Code answers related to "sql query to print first three characters"

Code answers related to "SQL"

Browse Popular Code Answers by Language