Question: 1.What command should be used to save permanently all changes made to a database. SAVE WRITE ALL COMMIT SAVE ALL 2.When building your clauses which
1.What command should be used to save permanently all changes made to a database.
- SAVE
- WRITE ALL
- COMMIT
- SAVE ALL
2.When building your clauses which of the following is recommended to address first:
- FROM
- SELECT
- WHERE
- ORDER BY
3.After requesting a service, a client must pay 30 days after the service is required. In the SERVICE table, there exists the attribute DATE that holds the day a service was required, but there is no attribute for the due date. Which of the following queries shows the date a service was required and when the payment is due as DUE_DATE.
- SELECT SID, DATE, DUE+30 AS DUE DATE FROM SERVICE
- SELECT SID, DATE, DATE+30 FROM SERVICE
- SELECT SID, DATE, 30+DUE_DATE FROM SERVICE
- SELECT SID, DATE, DUE_DATE FROM SERVICE
4.Which of the following differentiates the HAVING clause from the WHERE clause?
- WHERE is executed prior to SELECT and HAVING after.
- HAVING is executed prior to GROUP BY and WHERE after.
- WHERE is executed prior to GROUP BY and HAVING after.
- WHERE is used in older SQL versions.
5.When using a cross join between a table with 8 rows and another with 5 rows how many rows are in the result?
- 40
- 10
- 20
- 13
6.The database designer is working on creating the Entity Relationship model, but before doing so, the designer must ___ and enforce appropriate standards to be used in the documentation of the design.
- Communicate
- Gather
- Construct
- Analyze
7.The term "database development" is used to describe the process of database design and implementation.
- True
- False
8.As a database designer, which of the options below would you not include in the implementation phase of a database design?
- Designing the database
- Providing for data management
- Creating the database storage structure
- Loading data into the database
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
