cara mengambil 5 karakter pertama di 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;