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

Mysql3

时间:2014-12-02 15:09:58      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   strong   on   数据   div   

使用数据处理函数:

/*Upper返回大写*/
select vend_name,Upper(vend_name) as vend_name_upcase
from vendors
order by vend_name;

常用文本处理函数:

Left()  返回左边的字符;

Length() 返回串的长度;

Locate() 找出串的一个子串;

Lower() 转成小写;

LTrim() 去掉串左边的空格;

Right() 返回串右边的字符;

RTrim() 去掉串右边的空格;

Soundex() 返回串的soundex值;

SubString() 返回子串的字符;

Upper() 转成大写;

/*soundex是一个将任何文本串转换为描述其语音表示的字母数字模式算法*/

select cust_name,cust_contact
from customers
where cust_contact=Y.lie;
/*如果查找Y.lee,无返回结果*/

select cust_name,cust_contact
from customers
where Soundex(cust_contact)=Soundex(Y.lie);
/*可以得到结果,因为Lee和Lie读音相似*/

聚集函数:

对某列数据的处理:

AVG() 

COUNT() 行数;

MAX() 

MIN() 

SUM() 

Mysql3

标签:style   blog   color   使用   sp   strong   on   数据   div   

原文地址:http://www.cnblogs.com/bersaty/p/3278675.html

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