select student_name from student where student_name like 'Á%'; (GIVES YOU THE LIST STARTING WITH A) OUTPUT:ANKITAGARWAL
select student_name from student where student_name like '%A'; (GIVES YOU THE LIST ENDING WITH A) OUTPUT:BIKSUYADAVAA
select student_name from student where student_name like'%A%' (GIVES YOU THE LIST MIDDLE LETTERS WITH WITH "A") OUTPUT: STUDENT_NAME ANKITAGARWAL BIKSUYADAVAA