Exam 7: Sql for Database Construction and Application Processing
Exam 1: Introduction100 Questions
Exam 2: Introduction to Structured Query Language SQL105 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 Processing100 Questions
Exam 8: Database Redesign101 Questions
Exam 9: Managing Multiuser Databases102 Questions
Exam 10: A: Managing Databases With SQL Server 20012100 Questions
Exam 10: B: Managing Databases With Oracle Database 11g Release 2100 Questions
Exam 10: C: Managing Databases With MySQL100 Questions
Exam 11: The Web Server Environment198 Questions
Exam 12: Big Data datawarehouse and Business Intelligence Systems102 Questions
Exam 13: Microsoft Access 201348 Questions
Exam 14: Getting Started With Systems Analysis and Design35 Questions
Exam 15: E-R Diagrams and the Idef1x Standard35 Questions
Exam 16: E-R Diagrams and the UML Standard36 Questions
Exam 17: Getting Started With MySQL Workbench Data Modeling Tools37 Questions
Exam 18: Getting Started With Microsoft Visio 201334 Questions
Exam 19: Data Structures for Database Processing35 Questions
Exam 20: the Semantic Object Model35 Questions
Exam 21: Getting Started With Web Servers php and the Eclipse PDT35 Questions
Exam 22: Business Intelligence Systems80 Questions
Select questions type
The following database will be used in this question:
GENERAL SALES DATABASE:
SALESREP
CUSTOMER
What is an SQL view,and what is it used for? Include an example based on the CUSTOMER table of the General Sales Database.


(Essay)
4.7/5
(27)
Rows in a table can be changed by using the SQL UPDATE statement.
(True/False)
4.8/5
(26)
Based on the tables below,which of the following SQL statements would increase the balance of the Gonzales account by $100 to a total of $450? GENERAL SALES DATABASE:
SALESREP
CUSTOMER



(Multiple Choice)
4.9/5
(33)
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.8/5
(38)
Which SQL keyword is used to name a new table and describe the table's columns?
(Multiple Choice)
4.9/5
(32)
Which SQL keyword is used to change the structure,properties or constraints of a table?
(Multiple Choice)
4.8/5
(37)
The SQL SET keyword is used to specify a new value when changing a column value.
(True/False)
4.8/5
(34)
SQL triggers use the ANSI SQL keywords BEFORE,INSTEAD OF,and AFTER.
(True/False)
4.8/5
(38)
SQL triggers can be used when the DBMS receives an INSERT request.
(True/False)
4.8/5
(30)
Unless it is being used to copy data from one table to another,the SQL INSERT statement can be used to insert only a single row into a table.
(True/False)
4.9/5
(27)
Which SQL keyword is used to change one or more rows in a table?
(Multiple Choice)
4.9/5
(40)
One or more rows can be added to a table by using the SQL INSERT statement.
(True/False)
4.8/5
(34)
To set a column value to an initial value that is selected according to some business logic,you would use:
(Multiple Choice)
4.9/5
(35)
Showing 21 - 40 of 100
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)