Computer Science

The pattern '_ _ _' matches any string of …………… three characters. '_ _ _%' matches any string of …………… three characters.

  1. Atleast, Exactly
  2. Exactly, Atleast
  3. Atleast, All
  4. All, Exactly

SQL Queries

3 Likes

Answer

Exactly, Atleast

Reason — '_ _ _' matches any string of exactly 3 characters. Each dash represents one character, so there must be three characters in total. '_ _ _%' matches any string of at least 3 characters. The first three dashes represent exactly three characters, and the '%' symbol matches any substring. So, it matches any string with three or more characters.

Answered By

2 Likes


Related Questions