INSTR returns the numeric position of a named character.
NVL2 returns the first non-null expression in the expression list.
TRUNCATE rounds the column, expression, or value to n decimal places.
DECODE translates an expression after comparing it to each search value.
TRIM trims the heading of trailing characters (or both) from a character string.
NVL compares two expressions and returns null if they are equal, or the first expression of they are not equal.
NULLIF compares twp expressions and returns null if they are equal, or the first expression if they are not equal.
第1题:
A. The two statements produce identical results.
B. The second statement returns a syntax error.
C. There is no need to specify DESC because the results are sorted in descending order by default.
D. The two statements can be made to produce identical results by adding a column alias for the salary column in the second SQL statement.
第2题:
在Hibernate的Criteria查询中,Expression对象具体描述了查询条件,其对应SQL条件中的field>=value的方法是()。
第3题:
当()时,条件“expression1 XOR expression2”的值为真。
第4题:
JAVA EE中,JSP表达式语言的语法是()。
第5题:
Which four statements correctly describe functions that are available in SQL? ()
第6题:
Which three statements about subqueries are true? ()
第7题:
Which two statements are true regarding the ORDER BY clause? ()
第8题:
Which four are attributes of single row functions? ()
第9题:
INSTR returns the numeric position of a named character.
NVL2 returns the first non-null expression in the expression list.
TRUNCATE rounds the column, expression, or value to n decimal places.
DECODE translates an expression after comparing it to each search value.
TRIM trims the heading of trailing characters (or both) from a character string.
NVL compares two expressions and returns null if they are equal, or the first expression of they are not equal.
NULLIF compares twp expressions and returns null if they are equal, or the first expression if they are not equal.
第10题:
A main query can have more than one subquery.
A subquery can have more than one main query.
The subquery and main query must retrieve data from the same table.
The subquery and main query can retrieve data from different tables.
Only one column or expression can be compared between the subquery and main query.
Multiple columns or expression can be compared between the subquery and main query.
第11题:
string
character
integer
calendar
numeric
translation
date
conversion
第12题:
It is executed first in the query execution
It must be the last clause in the SELECT statement
It cannot be used in a SELECT statement containing a HAVING clause
You cannot specify a column name followed by an expression in this clause
You can specify a combination of numeric positions and column names in this clause
第13题:
在switch(expression)语句中,expression的数据类型不能是( )。
A.double
B.char
C.byte
D.short
第14题:
Which four are types of functions available in SQL? ()
第15题:
在JavaScript中,下列哪段代码能够在1秒之后执行表达式expression?()
第16题:
When a valid SQL Query in a DB Read step returns 0 rows, which branch of the step will be executed? ()
第17题:
Which three tasks can be performed using regular expression support in Oracle Database 10g?()
第18题:
Which two statements are true regarding partitioning in Mysql?()
第19题:
In which scenario would index be most useful?()
第20题:
You define the following regular expression of currency values: regex tx = new regex("^-?/d+(/./d{2})?$") You are required to write code that will be used to find whether a string in the variable named Bill matches the regular expression or not. You are also required to use this code as the expression in a conditional statement and need to know which code segment to use. What should you do?()
第21题:
it can be used to concatenate two strings.
it can be used to find out the total length of the string.
it can be used for string manipulation and searching operations.
it can be used to format the output for a column or expression having string data.
it can be used to find and replace operations for a column or expression having string data.
第22题:
Tables with BLOB and TEXT columns cannot be partitioned
Partitioning allows easier management of smaller data sets for certain queries
Partitioning allows different columns to be stored in separate files
The partitioning expression is an integer or function that returns an integer value or NULL value
Partitioning is only available for those storage engines that implements it natively
第23题:
cannot be nested
manipulate data items
act on each row returned
return one result per row
accept only one argument and return only one value
accept arguments which can be a column or an expression
第24题:
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.