Correct Answer
verified
True/False
Correct Answer
verified
Multiple Choice
A) use the SQL RENAME TABLE command
B) use the SQL ALTER TABLENAME command
C) use the SQL MODIFY TABLENAME command
D) create a new table,move the data,and drop the old table
Correct Answer
verified
Multiple Choice
A) data modeling
B) data engineering
C) reverse engineering
D) schema modeling
Correct Answer
verified
Multiple Choice
A) Preserving the existing tables
B) Preserving the existing relationships
C) Preserving the existing data
D) Both A and B are correct
Correct Answer
verified
Multiple Choice
A) SELECT C1.CustName,C1.SalesRepNo
FROM CUSTOMER C1
WHERE C1.SalesRepNo IN
(SELECT S1.SalesRepNo
FROM SALESREP S1
WHERE S1.RepName = 'Smith') ;
B) SELECT C1.CustName,C1.SalesRepNo
FROM CUSTOMER C1
WHERE C1.SalesRepNo IN
(SELECT S1.SaleRepNo
FROM SALESREP S1
WHERE S1.RepName = 'Smith')
AND C1.SalesRepNo=S1.SalesRepNo) ;
C) SELECT C1.CustName,C1.SalesRepNo
FROM CUSTOMER C1
WHERE C1.SalesRepNo IN
(SELECT S1.SaleRepNo
FROM SALESREP S1
WHERE S1.RepName = 'Smith')
AND C1.SalesRepNo<>S1.SalesRepNo) ;
D) SELECT C1.CustName,C1.SalesRepNo
FROM CUSTOMER C1
WHERE C1.SalesRepNo IN
(SELECT C2.SaleRepNo
FROM CUSTOMER C2
WHERE C1.SalesRepNo=C2.SalesRepNo) ;
AND C1.OrderNo<>C2.OrderNo) ;
Correct Answer
verified
True/False
Correct Answer
verified
True/False
Correct Answer
verified
True/False
Correct Answer
verified
True/False
Correct Answer
verified
True/False
Correct Answer
verified
True/False
Correct Answer
verified
True/False
Correct Answer
verified
Multiple Choice
A) conceptual schema
B) internal schema
C) dependency graph
D) table-relationship diagram
Correct Answer
verified
True/False
Correct Answer
verified
Multiple Choice
A) any row in the subquery meets the condition
B) all rows in the subquery meet the condition
C) no row in the subquery meets the condition
D) any row in the subquery fails to meet the condition
Correct Answer
verified
Multiple Choice
A) TableOne
B) TableTwo
C) Both TableOne and TableTwo
D) Either TableOne or TableTwo
Correct Answer
verified
Essay
Correct Answer
verified
Multiple Choice
A) any row in the subquery meets the condition
B) all rows in the subquery meet the condition
C) no row in the subquery meets the condition
D) any row in the subquery fails to meet the condition
Correct Answer
verified
True/False
Correct Answer
verified
Showing 1 - 20 of 103
Related Exams