Question: Starting from the slowest, arrange the following operators in the order in which they produce results in "SQL WHERE" query.
1. >, >=, <, <=
2. <>
3. =
4. LIKE
Question: Consider the following table "Students":
Students
- - - - - -
Name Hobbies
John Driving
Miller Fishing
David Writing
Robert Singing
What will be the output of the following query?
Select Substring(Hobbies,3) From students Where name= "john"