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

Oracle转MySQL日记

时间:2021-06-02 12:25:36      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:mysq   sql   strong   from   abc   错误   class   code   sele   

关于substr()函数和substring()函数

关于substr()和substring()区别

MySQL: SUBSTR( ), SUBSTRING( )
Oracle: SUBSTR( )
SQL Server: SUBSTRING( )

例如 Oracle:

select substr(‘abcde‘,0,3) from table;
结果:abc

MySQL:

select substr(‘abcde‘,0,3);//错误

(记住)转MySQL的时候要把0改为1

select substr(‘abcde‘,1,3);
结果:abc

Oracle转MySQL日记

标签:mysq   sql   strong   from   abc   错误   class   code   sele   

原文地址:https://www.cnblogs.com/starsupreme/p/14815613.html

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