首页 > 代码库 > Mysql3

Mysql3

使用数据处理函数:

/*Upper返回大写*/select vend_name,Upper(vend_name) as vend_name_upcasefrom vendorsorder by vend_name;

常用文本处理函数:

Left()  返回左边的字符;

Length() 返回串的长度;

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

Lower() 转成小写;

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

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

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

Soundex() 返回串的soundex值;

SubString() 返回子串的字符;

Upper() 转成大写;

/*soundex是一个将任何文本串转换为描述其语音表示的字母数字模式算法*/select cust_name,cust_contactfrom customerswhere cust_contact=Y.lie;/*如果查找Y.lee,无返回结果*/select cust_name,cust_contactfrom customerswhere Soundex(cust_contact)=Soundex(Y.lie);/*可以得到结果,因为Lee和Lie读音相似*/

聚集函数:

对某列数据的处理:

AVG() 

COUNT() 行数;

MAX() 

MIN() 

SUM() 

Mysql3