
mysql
cn_hdz
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MySQL 5.7 会出现sql语句版本不兼容
MySQL 5.7 会出现sql语句版本不兼容 通过修改服务器上面my.cnf文件 vi /etc/my.cnf在 [mysqld] 下面添加 :sql_mode=ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBST...原创 2018-08-23 14:11:12 · 3117 阅读 · 0 评论 -
Oracle中的instr()函数
1)instr()函数的格式 (俗称:字符查找函数)格式一:instr( string1, string2 ) / instr(源字符串, 目标字符串)格式二:instr( string1, string2 [, start_position [, nth_appearance ] ] ) / instr(源字符串, 目标字符串, 起始位置, 匹配序号)解析:str...转载 2018-07-30 14:45:58 · 359 阅读 · 0 评论