Tampilkan tiga karakter pertama SQL

SUBSTRING( string, start_position, length );
SELECT SUBSTRING( column_name, 1, 3 ) FROM table_name;
Zany Zebra