大约有 7,000 项符合查询结果(耗时:0.0172秒) [XML]

https://www.tsingfun.com/it/da... 

Mysql substr和Oracle substr区别 - 据库(内核) - 清泛网 - 专注C/C++及内核技术

Mysql substr和Oracle substr区别Oracle substr(字符串,开始索引、从0起,长度)Mysql substr或substring(字符串,开始索引、从1起,长度)Oracle substr(字符串,开始索引、从0起,长度) Mysql substr或substring(字符串,开始索引、从1起,长度)Mysql Orac...
https://www.tsingfun.com/it/da... 

mysql实现split分割字符串(length, SUBSTRING_INDEX, substring) - 数据...

mysql实现split分割字符串(length, SUBSTRING_INDEX, substring)由于MySql没有直接的split函数,只提供了length, SUBSTRING_INDEX, substring三个函数,这里介绍如何用这三个函数实现split功能。# SUBS...由于MySql没有直接的split函数,只提供了length, SUB...
https://www.tsingfun.com/it/da... 

MySQL (\'root\'@\'%\') does not exist 的问题 - 据库(内核) - 清泛网 - 专注C/C++及内核技术

MySQL ('root'@'%') does not exist 的问题MySQL ('root'@'%') does not exist的问题:在使用mysql时出现问题: The user specified as a definer ('...MySQL ('root'@'%') does not exist的问题: 在使用mysql时出现问题: The user specified as a definer ('root'@'%') does not exist。...
https://www.tsingfun.com/it/da... 

oracle top 替代方案 - 据库(内核) - 清泛网 - 专注C/C++及内核技术

oracle top 替代方案由于Oracle不支持select top 语句,所以在Oracle中经常是用order by 跟 rownum的组合来实现select top n的查询。select * from (...由于Oracle不支持select top 语句,所以在Oracle中经常是用order by 跟 rownum 的组合来实现select top n的查...
https://www.tsingfun.com/it/da... 

Oracle的列操作(增加列,修改列,删除列),包括操作多列 - 据库(内核) - 清...

Oracle的列操作(增加列,修改列,删除列),包括操作多列增加一列: alter table emp4 add test varchar2(10);修改一列: alter table emp4 modify test varchar2(20);删除一列:alter 增加一列: alter table emp4 add test varchar2(10); 修改一列: alter table e...
https://bbs.tsingfun.com/thread-351-1-1.html 

mysql实现split分割字符串(length, SUBSTRING_INDEX, substring) - 爬虫/...

由于MySql没有直接的split函数,只提供了length, SUBSTRING_INDEX, substring三个函数,这里介绍如何用这三个函数实现split功能。 # SUBSTRING_INDEX(str, delim, count):返回字符串 str 中在第 count 个出现的分隔符 delim 之前的子串。如果 count 是...
https://bbs.tsingfun.com/thread-97-1-1.html 

Plsqldev SQL含中文查无结果 - 爬虫/据库 - 清泛IT社区,为创新赋能!

设置环境变量:NLS_LANG 值为:SIMPLIFIED CHINESE_CHINA.ZHS16GBK
https://bbs.tsingfun.com/thread-426-1-1.html 

卸载SQL Server2000后不能再次安装的问题解决方法 - 爬虫/据库 - 清泛IT...

曾经由于磁盘空间的问题,卸载了SQL Server2000,可当再次要把它安装上的时候,却怎么也不行了。无论是安装哪一个版本,永远都是同样的错误提示,说是有一个文件已经挂起,必须重新启动计算机。那okay啦,重新启动,再次安...
https://bbs.tsingfun.com/thread-33-1-1.html 

常用Sql - 爬虫/据库 - 清泛IT社区,为创新赋能!

本帖最后由 zqp2013 于 2015-3-17 22:06 编辑 mysql:drop table if exists tablename; 不能写成 drop table tablename if exists tablename; mysql:建立索引Sql CREATE TABLE tablename (   `ID`                 &nbs...
https://bbs.tsingfun.com/thread-38-1-1.html 

MySql安装配置 - 爬虫/据库 - 清泛IT社区,为创新赋能!

1.下载服务器端,解压 2.安装Mysql服务: 进入bin目录,mysqld.exe --install (指定安装的MySql服务名)。 (卸载 net stop servicename;             mysqld.exe --remove servicename) 3.进入MySql命令模式: mysql.exe(...