Exam 7: SQL for Database Construction and Application Processing
Exam 1: Introduction100 Questions
Exam 2: Introduction to Structured Query Language SQL100 Questions
Exam 3: The Relational Model and Normalization100 Questions
Exam 4: Database Design Using Normalization100 Questions
Exam 5: Data Modeling With the Entity-Relationship Model100 Questions
Exam 6: Transforming Data Models Into Database Designs103 Questions
Exam 7: SQL for Database Construction and Application Processing105 Questions
Exam 8: Database Redesign101 Questions
Exam 9: Managing Multiuser Databases102 Questions
Exam 10: Managing Databases With SQL Server 2008 R2100 Questions
Exam 11: Managing Databases With Oracle Database 11g100 Questions
Exam 12: Managing Databases With MySQL 55100 Questions
Exam 13: The Web Server Environment110 Questions
Exam 14: Database Processing With XML100 Questions
Exam 15: Database Processing for Business Intelligence Systems101 Questions
Exam 16: Microsoft Access 201048 Questions
Exam 17: Getting Started With Systems Analysis and Design35 Questions
Exam 18: E-R Diagrams and the Idef1x Standard35 Questions
Exam 19: E-R Diagrams and the UML Standard36 Questions
Exam 20: Getting Started With MySQL Workbench Data Modeling Tools37 Questions
Exam 21: Getting Started With Microsoft Visio 201036 Questions
Exam 22: the Semantic Object Model35 Questions
Exam 23: Data Structures for Database Processing35 Questions
Exam 24: Getting Started With Web Servers php and the Eclipse PDT35 Questions
Select questions type
Because SQL stored procedures allow and encourage code sharing among developers,stored procedures give database application developers the advantages of less work,standardized processing,and specialization among developers.
(True/False)
4.9/5
(35)
Based on the tables below,which of the following SQL statements would increase the balance of the Gonzales by $100 to a total of $450? GENERAL SALES DATABASE:
SALESREP
CUSTOMER



(Multiple Choice)
4.8/5
(42)
To set a column value to an initial value that is selected according to some business logic,you would use:
(Multiple Choice)
4.7/5
(37)
Which SQL keyword is used to change the structure,properties or constraints of a table?
(Multiple Choice)
4.8/5
(41)
Given the SQL statement
CREATE TABLE SALESREP (
SalesRepNo int NOT NULL,
RepName char(35)NOT NULL,
HireDate date NOT NULL,
CONSTRAINT SalesRepPK PRIMARY KEY (SalesRepNo),
CONSTRAINT SalesRepAK1 UNIQUE (RepName)
);
We know that ________.
(Multiple Choice)
4.9/5
(37)
If the values in an SQL view are not changeable through the view itself,you may still be able to update the view by using unique application logic.In this case,the specific logic is placed in an INSTEAD OF trigger.
(True/False)
4.8/5
(43)
To set a column value to an initial value that is selected according to some business logic,you would use the SQL DEFAULT constraint with the CREATE TABLE command.
(True/False)
4.8/5
(30)
Data values to be added to a table are specified by using the SQL VALUES clause.
(True/False)
4.8/5
(43)
The SQL syntax JOIN ...ON can be used as an alternate way of writing an SQL join statement.
(True/False)
5.0/5
(33)
The SQL command used to create a virtual table is ________.
(Multiple Choice)
5.0/5
(40)
SQL views are updatable when the view is based on a single table with no computed columns,and all non-null columns are present in the view.
(True/False)
4.8/5
(33)
The following database will be used in this question:
GENERAL SALES DATABASE:
SALESREP
CUSTOMER
Explain the use of the SQL statement CREATE TABLE.Do NOT discuss the ALTER statement in your answer,but DO include an example based on the SALESREP table in the General Sales database.


(Essay)
4.7/5
(27)
Showing 61 - 80 of 105
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)