题目详情
单选题 选择最佳答案: 您需要生成一个报告,其中每个客户的信用额度都增加了1000美元.在输出中,客户的姓氏应具有标题名称,增加的信用额度应标记为新信用额度.列标题应该只有每个单词的第一个大写字母. 哪种说法可以满足这个要求
A. SELECT cust_last_name AS Name, cust_credit_limit + 1000as New Credit LimitFROM customers
B. SELECT cust_last_name Name, cust_credit_limit + 1000"New Credit Limit"FROM customers
C. SELECT cust_last_name As "Name", cust_credit_limit + 1000AS "New Credit Limit"FROM customers
D. SELECT INITCAP (cust_last_name) "Name", cust_credit_limit + 1000INITCAP("NEW CREDIT LIMIT")FROM customers

学科:现代数据库系统
时间:2024-05-21 12:37:00
相关题目
相关作业
