单选题
Choose the best answer.
Examine this query:
SELECT TRUNC (ROUND(156.00,-2),-1) FROM DUAL; What is the result?
相关试题
单选题
Choose the best answer
Examine the description of the PRODUCT_INFORMATION table:
NameNULL?Type
------------------------------------------------------------------------
PROD_IDNOT NULLNUMBER(2)
PROD_NANEVARCRAR2 (10)
LIST_PRICENUMBER(6,2)
Which query retrieves the number of products with a null list price?K.SELECT (COUNT(list_price) FROM Product_intormation WHERE list_price=NULL;
多选题
Choose two
Examine the description of the PRODUCT DETALS table:
NAMENULLTYPE
--------------------------------------------------
PRODUCT_IDNOT NULLNUMBER(2)
PRODUCT_NAMENOT NULLVARCHAR2(25)
PRODUCT_PRICENUMBER(8,2)
EXPIRY_DATEDATE
Which two statements are true?
单选题
Choose the best answer.
Examine the description of the EMPLOYEES table:
NameNullType
----------------------------------------------------------
EMP_IDNOT NULNUMBER
EMP_NAMEVARCHAR2 (40)
DEPT_IDNUMBER(2)
SALARYNUMBER(8,2)
JOIN_DATEDATE
Which query is valid?
单选题
Choose the best answer
The CUSTOMERS table has a CUST_LAST_NAME column of data type VARCHAR2.
The table has two rows whose COST_LAST_MANE values are Anderson and Ausson.
Which query produces output for CUST_LAST_SAME containing Oder for the first row and Aus for the second?
单选题
Choose the best answer
You have been asked to create a table for a banking application.
One of the columns must meet three requirements:
单选题
Choose the best answer
The EMPLOYEES table contains columns EMP_ID of data type NUMBER and HIRE_DATE of data type
DATE
You want to display the date of the first Monday after the completion of six months since hiring
The NLS_TERRITORY parameter is set to AMERICA in the session and, therefore, Sunday is the first day of the week
Which query can be used?
多选题
Choose three
Which three are true about the CREATE TABLE command?
多选题
Choose two
The CUSTOMERS table has a CUST_CREDT_LIMIT column of data type number.
Which two queries execute successfully?