Which Of The Following Is A Correct Syntax That Uses Char List #159
Which of the following is a correct syntax that uses [char list] wildcard?
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 is a correct syntax that uses [char list] wildcard?
SELECT * FROM table_name WHERE column_name LIKE ‘[xyz]%’; SELECT * FROM table_name WHERE column_name LIKE ‘[xyz]’’%’; SELECT * FROM table_name WHERE column_name LIKE _‘[x-z]’; SELECT * FROM table_name WHERE column_name LIKE ‘[xyz]’%;