Both USING and ON clauses can be used for equijoins and nonequijoins
Amaximum of one pair of columns can be joined between two tables using the ON clause
The ON clause can be used to join tables on columns that have different names but compatible data types
The WHERE clause can be used to apply additional conditions in SELECT statements containing the ON or the USING clause
第1题:
Which three statements are true regarding subqueries?()
第2题:
What is true about joining tables through an equijoin?()
第3题:
Which two are true about aggregate functions? ()
第4题:
Which two statements are true regarding subqueries? ()
第5题:
Which three statements are true regarding single-row functions?()
第6题:
Which two statements are true regarding the USING and ON clauses in table joins?()
第7题:
A job chain can contain a nested chain of jobs
The jobs in a job chain cannot have more than one dependency
A job of the CHAIN type can be run using event-based or time-based schedules
The jobs in a job chain can be executed only by using the events generated by the Scheduler
第8题:
A subquery can retrieve zero or more rows
Only two subqueries can be placed atone level
A subquery can be used only in SQL query statements
A subquery can appear on either side of a comparison operator
There is no limit on the number of subquery levels in the WHERE clause of a SELECT statement
第9题:
The statement would not execute because table aliases are not allowed in the JOIN clause.
The statement would not execute because the table alias prefix is not used in the USING clause.
The statement would not execute because all the columns in the SELECT clause are not prefixed with table aliases.
The statement would not execute because the column part of the USING clause cannot have a qualifier in the SELECT list.
第10题:
It is built by Automatic Tuning Optimizer.
It cannot be stored persistently in the data dictionary.
It can be used by the query optimizer automatically.
It can be created manually by using the CREATE PROFILE command.
第11题:
A WHERE clause can be used to restrict both rows and groups.
A WHERE clause can be used to restrict rows only.
A HAVING clause can be used to restrict both rows and groups.
A HAVING clause can be used to restrict groups only.
A WHERE clause CANNOT be used in a query of the query uses a HAVING clause.
A HAVING clause CANNOT be used in subqueries.
第12题:
They can accept only one argument.
They can be nested up to only two levels.
They can return multiple values of more than one data type.
They can be used in SELECT, WHERE, and ORDER BY clauses.
They can modify the data type of the argument that is referenced.
They can accept a column name, expression, variable name, or a user-supplied constant as arguments.
第13题:
Which two statements are true about using the isUserInRole method to implement security in a Java EEapplication?()
第14题:
Which two statements are true about WHERE and HAVING clauses? ()
第15题:
Which two statements regarding a SQL profile are true?()
第16题:
Which two statements are true about a job chain? ()(Choose two.)
第17题:
Which two statements are true about a job chain?()
第18题:
A job chain can contain a nested chain of jobs.
The jobs in a job chain cannot have more than one dependency.
A job of the CHAIN type can be run using event-based or time-based schedules.
The jobs in a job chain can be executed only by using the events generated by the Scheduler
第19题:
It can be used to join a maximum of three tables
It can be used to restrict the number of columns used in a NATURAL join
It can be used to access data from tables through equijoins as well as nonequijoins
It can be used to join tables that have columns with the same name and compatible data types
第20题:
Both USING and ON clauses can be used for equijoins and nonequijoins
Amaximum of one pair of columns can be joined between two tables using the ON clause
The ON clause can be used to join tables on columns that have different names but compatible data types
The WHERE clause can be used to apply additional conditions in SELECT statements containing the ON or the USING clause
第21题:
You can use aggregate functions in any clause of a SELECT statement.
You can use aggregate functions only in the column list of the SELECT clause and in the WHERE clause of a SELECT statement.
You can mix single row columns with aggregate functions in the column list of a SELECT statement by grouping on the single row columns.
You can pass column names, expressions, constants, or functions as parameters to an aggregate function.
You can use aggregate functions on a table, only by grouping the whole table as one single group.
You cannot group the rows of a table by more than one column while using aggregate functions.
第22题:
The VERSIONS BETWEEN clause may be used in DML statements.
The VERSIONS BETWEEN clause may be used in DDL statements.
The VERSIONS BETWEEN clause may not be used to query past DDL changes to tables.
The VERSIONS BETWEEN clause may not be used to query past DML statements to tables.
第23题:
You can join a maximum of two tables through an equijoin.
You can join a maximum of two columns through an equijoin.
You specify an equijoin condition in the SELECT or FROM clauses of a SELECT statement.
To join two tables through an equijoin, the columns in the join condition must be primary key and foreign key columns.
You can join n tables (all having single column primary keys) in a SQL statement by specifying a minimum of n-1 join conditions.
第24题:
Has-a relationships should never be encapsulated.
Has-a relationships should be implemented using inheritance.
Has-a relationships can be implemented using instance variables.
Is-a relationships can be implemented using the extends keyword.
Is-a relationships can be implemented using the implements keyword.
An array or a collection can be used to implement a one-to-many has-a relationship.