摘要:
LOWER 函数定义: string lower(string a) string lcase(string a) 功能说明: 将字符串中的⼤写字⺟转成⼩写字⺟ 若参数为 NULL,返回 NULL 。 示例: lower('fOoBaR') = 'foobar UPPER 函数定义: string upper(string a) string ucase(string a) 功能说明: 将... 阅读全文
摘要:
今天无意间发现mysql的coalesce, coalesce()解释:返回参数中的第一个非空表达式(从左向右依次类推); 使用示例:a,b,c三个变量。 阅读全文