
DBMS
Quiz by Valar Selvi .M.K
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Arrange the correct SQL statement to create a new database called testDB
The following SQL statement selects the "CustomerName" and "City" columns from the "Customers" table:
The following SQL statement finds the sum of the "Quantity" fields in the "OrderDetails" table:
The following SQL statement returns the cities (only distinct values) from both the "Customers" and the "Suppliers" table:

the following SQL statement update the ContactName to "Juan" for all records where country is "Mexico":

The following SQL statement selects all customers with a CustomerName that have "or" in any position:
TableName:Customers
The following SQL statement selects all products with a price between 10 and 20. In addition; do not show products with a CategoryID of 1, 3:
TableName: Products

The following SQL creates a PRIMARY KEY on the "ID" column when the "Persons" table is created:
The following SQL statement selects all customers that are located in "Germany", "France" or "UK":
Table name: Customers
The following SQL adds an "Email" column to the "Customers" table: