Which Of The Following Pattern Is Used To Search For A String #160
Which of the following pattern is used to search for a string which doesn’t starts with letters from m to r and ends with at least 2 characters?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Operators and Wildcards - SQL Wildcards - Quiz No.1.
Which of the following pattern is used to search for a string which doesn’t starts with letters from m to r and ends with at least 2 characters?
[m-r]%%
[!m-r]_ _ %
[^mr]_ %
[m-r]_ % _