Consider the given STUDENTS table:
Write SQL query to fetch details of students whose Surname is of 5 characters i.e S_NAME has 5 characters after space(' ').
I tried like clause(5 underscores after space)
but it is resulting in complete table
I also tried length function
SQL>select * from STUDENTS
where length(S_NAME)=11;
but it is shows no data found.