Como buscar 5 primeiros caracteres em SQL
Select SUBSTRING(StudentName,1,5) as studentname from student
Obedient Ocelot
Select SUBSTRING(StudentName,1,5) as studentname from student
SELECT FIRST(column_name) FROM table_name;