Multiple choice technology databases

What is the correct order of the ">" and the "=" operators, when we want to specify greater or equal search condition?

  1. =>

  2. >=

  3. Neither of the other two.

  4. >>

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

In SQL and most programming languages, the 'greater than or equal to' operator is written as >=. Option A (=>) is incorrect syntax. Option C is wrong because there is a correct operator. Option D (>>) is the right shift operator in some languages, not a comparison operator. Option B (>=) is the universally accepted syntax.