码迷,mamicode.com
首页 > 数据库 > 详细

SQL UCASE() 函数

时间:2017-12-19 19:59:53      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:try   select   http   ebs   数据   class   facebook   over   color   

SQL UCASE() 函数


UCASE() 函数

UCASE() 函数把字段的值转换为大写。

SQL UCASE() 语法

SELECT UCASE(column_name) FROM table_name;

 

用于 SQL Server 的语法

SELECT UPPER(column_name) FROM table_name;

 

 


演示数据库

在本教程中,我们将使用 RUNOOB 样本数据库。

下面是选自 "Websites" 表的数据:

+----+--------------+---------------------------+-------+---------+
| id | name         | url                       | alexa | country |
+----+--------------+---------------------------+-------+---------+
| 1  | Google       | https://www.google.cm/    | 1     | USA     |
| 2  | 淘宝          | https://www.taobao.com/   | 13    | CN      |
| 3  | 菜鸟教程      | http://www.runoob.com/    | 4689  | CN      |
| 4  | 微博          | http://weibo.com/         | 20    | CN      |
| 5  | Facebook     | https://www.facebook.com/ | 3     | USA     |
| 7  | stackoverflow | http://stackoverflow.com/ |   0 | IND     |
+----+---------------+---------------------------+-------+---------+

 

 


SQL UCASE() 实例

下面的 SQL 语句从 "Websites" 表中选取 "name" 和 "url" 列,并把 "name" 列的值转换为大写:

实例

SELECT UCASE(name) AS site_title, url
FROM Websites;

 

执行以上 SQL 输出结果如下:

技术分享图片

SQL UCASE() 函数

标签:try   select   http   ebs   数据   class   facebook   over   color   

原文地址:http://www.cnblogs.com/cisum/p/8066226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!