将 "CustomerName" 中的文本转换为大写:
SELECT UCASE(CustomerName) AS UppercaseCustomerNameFROM Customers;
SELECT UCASE(CustomerName) AS UppercaseCustomerName
FROM Customers;
UCase() 函数将字符串转换为大写。
UCase()
提示: 也可以看一下 LCase() 函数。
LCase()
UCase( text )