十个MySQL常用函数
Posted 编程随想曲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了十个MySQL常用函数相关的知识,希望对你有一定的参考价值。
select concat(1,'a',2,'b') from dual //1a2b
select left('abcde',3) from dual //abc
select right('abcde',3) from dual //cde
select length('abcde') from dual //5
select date_format(curdate(),'%Y-%m-%d') from dual //2021-01-29
cast(1.123 as decimal(5,4)) //1.1230
select instr('abcde','d') from dual //4
select substr('abc',2) from dual //bc
select substr('1.23456',instr('1.23456','.')+1) from dual //23456
select reverse('abcde') from dual //edcba
以上是关于十个MySQL常用函数的主要内容,如果未能解决你的问题,请参考以下文章