Exam 6: Introduction to SQL
Exam 1: The Database Environment and Development Process173 Questions
Exam 2: Modeling Data in the Organization121 Questions
Exam 3: The Enhanced E-R Model and Business Rules74 Questions
Exam 4: Logical Database Design and the Relational Model120 Questions
Exam 5: Physical Database Design and Performance105 Questions
Exam 6: Introduction to SQL119 Questions
Exam 7: Advanced SQL111 Questions
Exam 8: Database Application Development100 Questions
Exam 9: Data Warehousing117 Questions
Exam 10: Data Quality and Integration102 Questions
Exam 11: Data and Database Administration116 Questions
Exam 12: Distributed Databases109 Questions
Exam 13: Object-Oriented Data Modeling91 Questions
Exam 14: Using Relational Databases to Provide Object Persistence113 Questions
Select questions type
When the select clause in the create view statement contains the keyword DISTINCT,the view can be used to update data.
(True/False)
4.9/5
(39)
What does the following SQL statement do?
Delete from Customer_T
Where state = 'HI';
(Multiple Choice)
4.8/5
(36)
DDL is typically used during which phases of the development process?
(Multiple Choice)
4.8/5
(36)
In order to update data in SQL,one must inform the DBMS which relation,columns,and rows are involved.
(True/False)
4.8/5
(38)
Multiple values returned from an SQL query that includes an aggregate function are called:
(Multiple Choice)
5.0/5
(36)
Indexes are created in most RDBMS to provide rapid ________ and ________ access to base-table data.
(Short Answer)
4.7/5
(34)
What are some of the advantages and disadvantages to an SQL standard?
(Essay)
4.9/5
(28)
The DELETE TABLE DDL command is used to remove a table from the database.
(True/False)
4.8/5
(40)
Which of the following counts ONLY rows that contain a value?
(Multiple Choice)
4.9/5
(43)
What does the following SQL statement do?
Alter Table Customer_T
Add (Type Varchar (2));
(Multiple Choice)
5.0/5
(34)
What results will be produced by the following SQL query?
Select sum(standard_price)as total_price
From product_v
Where product_type = 'WOOD';
(Multiple Choice)
4.8/5
(36)
The ________ SQL command lists the columns from base tables or views to be projected into the command result table.
(Short Answer)
4.8/5
(32)
What will be returned when the following SQL query is executed?
Select driver_no,count(*)as num_deliveries
From deliveries
Group by driver_no
Having count(*)> 2;
(Multiple Choice)
4.8/5
(29)
Implementation of a standard can never stifle creativity and innovation.
(True/False)
4.8/5
(34)
When creating a table,it is not important to consider foreign key?primary key mates.
(True/False)
4.8/5
(25)
One of the original purposes of the SQL standard was to provide a vehicle for portability of database definition and application modules between conforming DBMSs.
(True/False)
4.8/5
(27)
If multiple Boolean operators are used in an SQL statement,NOT is evaluated first,then AND,then OR.
(True/False)
4.9/5
(34)
The FROM clause is the first statement processed in an SQL command.
(True/False)
4.9/5
(33)
Showing 41 - 60 of 119
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)