engineering computer science MCQ #753

What is the result of the SQL query 'SELECT * FROM customers WHERE country='USA' OR country='Canada';'?

engineering computer science MCQ #753

  1. Question 1

    Q1. What is the result of the SQL query 'SELECT * FROM customers WHERE country='USA' OR country='Canada';'?

    • A) Customers from USA and Canada
    • B) Customers from USA or Canada
    • C) Customers from USA
    • D) Customers from Canada

    Answer: Customers from USA or Canada

    Explanation: The SQL query uses the OR operator to select customers from either USA or Canada, resulting in a combined result set.