Multiple choice technology programming languages

You want to select all employee names starting with capital C. Which clause you will use?

  1. order by

  2. Like

  3. sameas

  4. not like

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The LIKE clause is used in SQL to search for a specified pattern in a column. For selecting employee names starting with capital C, you would use 'LIKE "C%"'. Other options like ORDER BY, sameas, and not like don't perform pattern matching.