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. Neither of the other two.

  3. =>

  4. !>=

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

In standard SQL, the greater than or equal operator is written as the greater-than sign followed immediately by the equals sign, resulting in >=. Other variations like => are invalid in standard SQL syntax.