Group functions on columns ignore NULL values.
Group functions on columns returning dates include NULL values.
Group functions on columns returning numbers include NULL values.
Group functions on columns cannot be accurately used on columns that contain NULL values.
Group functions on columns include NULL values in calculations if you use the keyword INC_NULLS.
第1题:
Which statement is true regarding the INTERSECT operator?()
第2题:
What is true of using group functions on columns that contain NULL values?()
第3题:
Which two are true about aggregate functions? ()
第4题:
Using the report wizard you create a tabular report to display all the columns in the EMP table. The records are ordered by the deptname and job columns. You need to create a hierarchical report that breaks on the deptname and job values. Using the data model how would you create this break structure?()
第5题:
The STUDENT_GRADES table has these columns: STUDENT_ID NUMBER(12) SEMESTER_END DATE GPA NUMBER(4,3) Which statement finds the highest grade point average (GPA) per semester?()
第6题:
The indexed column is declared as NOT NULL.
The indexed columns are used in the FROM clause.
The indexed columns are part of an expression.
The indexed column contains a wide range of values.
第7题:
SELECT MAX(gpa) FROM student_grades WHERE gpa IS NOT NULL;
SELECT (gpa) FROM student_grades GROUP BY semester_end WHERE gpa IS NOT NULL;
SELECT MAX(gpa) FROM student_grades WHERE gpa IS NOT NULL GROUP BY semester_end;
SELECT MAX(gpa) GROUP BY semester_end WHERE gpa IS NOT NULL FROM student_grades;
SELECT MAX(gpa) FROM student_grades GROUP BY semester_end WHERE gpa IS NOT NULL;
第8题:
The UNIQUE constraint does not permit a null value for the column.
A UNIQUE index gets created for columns with PRIMARY KEY and UNIQUE constraints.
The PRIMARY KEY and FOREIGN KEY constraints create a UNIQUE index.
The NOT NULL constraint ensures that null values are not permitted for the column.
第9题:
It ignores NULL values
Reversing the order of the intersected tables alters the result
The names of columns in all SELECT statements must be identical
The number of columns and data types must be identical for all SELECT statements in the query
第10题:
Group functions on columns ignore NULL values.
Group functions on columns returning dates include NULL values.
Group functions on columns returning numbers include NULL values.
Group functions on columns cannot be accurately used on columns that contain NULL values.
Group functions on columns include NULL values in calculations if you use the keyword INC_NULLS.
第11题:
Which two statements are true regarding views?()
第12题:
Which two statements are true about constraints? ()
第13题:
What is true about updates through a view? ()
第14题:
The STUDENT_GRADES table has these columns: STUDENT_ID NUMBER(12) SEMESTER_END DATE GPA NUMBER(4,3) Which statement finds the highest grade point average (GPA) per semester?()
第15题:
In which scenario would index be most useful?()
第16题:
Specify the break order on the gemp group Property palette.
Specify a break order on the dept_name and job columns property palettes.
Click and drag the dept_name and jobs column out and above of the gemp group to create a new parent group.
Change the position of the dept_name and the job columns within the gemp group.
第17题:
SELECT MAX (gpa) FROM student _ grades WHERE gpa IS NOT NULL;
SELECT (gpa) FROM student _ grades GROUP BY semester_end WHERE gpa IS NOT NULL;
SELECT MAX (gpa) FROM student _ grades WHERE gpa IS NOT NULL GROUP BY semester_end;
SELECT MAX (gpa) GROUP BY semester_end WHERE gpa IS NOT NULL FROM student _ grades;
SELECT MAX (gpa) FROM student _ grades GROUP BY semester_end WHERE gpa IS NOT NULL;
第18题:
You cannot update a view with group functions.
When you update a view group functions are automatically computed.
When you update a view only the constraints on the underlying table will be in effect.
When you update a view the constraints on the views always override the constraints on the underlying tables.
第19题:
A subquery that defines a view cannot include the GROUP BY clause
A view that is created with the subquery having the DISTINCT keyword can be updated
A view that is created with the subquery having the pseudo column ROWNUM keyword cannot be updated
A data manipulation language (DML) operation can be performed on a view that is created with the subquery having all the NOT NULL columns of a table