Cómo buscar los primeros 5 caracteres en 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;