Comment récupérer 5 premiers caractères dans 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;