Examine the description of the CUSTOMERS table:
Name Null type
-----------------------------------------------------
CUST_ID NOT NULL

欢迎免费使用小程序搜题/刷题/查看解析,提升学历,成考自考报名,论文代写、论文查重请加客服微信skr-web

Examine the description of the CUSTOMERS table:
Name Null type
-----------------------------------------------------
CUST_ID NOT NULL NUMBER(2)
CUST_LAST_NAME VARCHAR2(30)
CITY VARCHAR2(10)
CUST_CREDIT_LIMIT NUMBER(6,2)
You need to display last names and credit limits of all customers whose last name starts with A or
B in lower or upper case, and whose credit limit is below 1000
Examine this partial query
SELECT cust_last_name, cust_credit_limit FROM customers
Which two WHERE conditions give the required result?

A.WHERE(INITCAP(cust last namE.LIKE   'A%' OR INITCAP(cust last namE.LIKE   'B%')
AND cust credit limit < 1000 B.WHERE UPPER(cust_1ast_namE.IN ('A%', 'B%' )
AND cust credit limit < 1000 C.WHERE (UPPER(cust last namE.LIKE INITCAP('A') OR UPPER(cust -Last-namE.LIKE
INITCAP('B'))
AND ROUND(cust credit limit)< ROUND(1000); D.WHERE( UPPER(cust_1ast_namE.LIKE 'A% OR UPPER(Cust_1ast_namE.LINK ‘B%’
AND ROUND(cust credit limit)< 1000 E.WHERE UPPER(cust last namE.BETWEEN UPPER ('A%' AND 'B%' )
AND ROUND(cust credit limit)< 1000
正确答案AD
访客
邮箱
网址

通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作


  • 自动写文案
  • 自动写小说
  • 马上扫码让Ai帮你完成工作
通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作

  • 自动写论文
  • 自动写软件
  • 我不是人,但是我比人更聪明,我是强大的Ai
Top