logo

CuriousTab

CuriousTab

Introduction to SQL problems


  • 1. The wildcard asterisk (*) is the SQL-92 standard for indicating "any sequence of characters."

  • Options
  • A. True
  • B. False
  • Discuss
  • 2. Indexes can usually be created for both primary and secondary keys.

  • Options
  • A. True
  • B. False
  • Discuss
  • 3. Scalar aggregate are multiple values returned from an SQL query that includes an aggregate function.

  • Options
  • A. True
  • B. False
  • Discuss
  • 4. Data manipulation language (DML) commands are used to define a database, including creating, altering, and dropping tables and establishing constraints.

  • Options
  • A. True
  • B. False
  • Discuss
  • 5. DISTINCT and its counterpart, ALL, can be used more than once in a SELECT statement.

  • Options
  • A. True
  • B. False
  • Discuss
  • 6. SELECT DISTINCT is used if a user wishes to see duplicate columns in a query.

  • Options
  • A. True
  • B. False
  • Discuss
  • 7. The SQL statement: SELECT Name, COUNT(*) FROM NAME_TABLE; counts the number of name rows and displays this total in a table with a single row and a single column.

  • Options
  • A. True
  • B. False
  • Discuss
  • 8. The qualifier DISTINCT must be used in an SQL statement when we want to eliminate duplicate rows.

  • Options
  • A. True
  • B. False
  • Discuss
  • 9. There is an equivalent join expression that can be substituted for all subquery expressions.

  • Options
  • A. True
  • B. False
  • Discuss
  • 10. The ADD command is used to enter one row of data or to add multiple rows as a result of a query.

  • Options
  • A. True
  • B. False
  • Discuss

First 2 3 4 5 6 7