• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

GATE | GATE MOCK 2017 | Question 60

Which option is true about the SQL query given below?
SELECT firstName, lastName 
FROM Employee 
WHERE lastName BETWEEN \'A%\' AND \'D%\';

(A)

It will display all the employees having last names starting with the alphabets \'A\' till \'D\' inclusive of A and exclusive of D.

(B)

It will throw an error as BETWEEN can only be used for Numbers and not strings.

(C)

It will display all the employees having last names starting from \'A\' and ending with \'D\'.

(D)

It will display all the employees having last names in the range of starting alphabets as \'A\' and \'D\' excluding the names starting with \'A\' and \'D\'.

Answer

Please comment below if you find anything wrong in the above post
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!

Last Updated :
Share your thoughts in the comments