Your work has been saved and submitted
________ is a set of commands used to update and query a database.
The main concept of relational databases was published in 1970 by:
The command for removing a table is:
The SQL command ________ adds one or more new columns to a table.
What does the following SQL statement do?
ALTER TABLE Customer_T
ADD (Type Varchar (2));
ALTER TABLE Customer_T
ADD (Type Varchar (2));
INSERT INTO is an example of ________ code.
What does the following SQL statement do?
DELETE FROM Customer_T
WHERE state = 'HI';
DELETE FROM Customer_T
WHERE state = 'HI';
In an SQL statement, which of the following parts states the conditions for row selection?
What does the following SQL statement do?
SELECT * From Customer WHERE Cust_Type = "Best"
SELECT * From Customer WHERE Cust_Type = "Best"
What results will be produced by the following SQL query?
SELECT SUM(Standard_Price) as Total_Price
from Product_V
where Product_Type = 'WOOD';
SELECT SUM(Standard_Price) as Total_Price
from Product_V
where Product_Type = 'WOOD';
- Get link
- X
- Other Apps
Labels
BALT6201 Benedictine
Labels:
BALT6201
Benedictine
- Get link
- X
- Other Apps
Comments
Post a Comment