display first three characters sql

Solutions on MaxInterview for display first three characters sql by the best coders in the world

showing results for - "display first three characters sql"
Emilia
15 Sep 2019
1SUBSTRING( string, start_position, length );
2SELECT SUBSTRING( column_name, 1, 3 ) FROM table_name;
3