随笔分类 - 数据库
介绍Oralce.MongoDB.MySQL等的使用
摘要:注:mysql中没有varchar2(10)和number这两个数据类型
阅读全文
摘要:select * from table1 order by column desc limit 10
阅读全文
摘要:sql语句里表名或者列名加上`[tab键上面]来加以区别
阅读全文
摘要:oracle数据库中,使用wm_concat(column)函数,可以进行字段合并,下文对该功能的实现方法作了详细的介绍,供您参考学习。
阅读全文
摘要:mongoVUE1.5.3 破解方法
阅读全文
摘要:简单介绍Linux环境安装MongoDB
阅读全文
摘要:MongoDB客户端工具进行数据的备份。
阅读全文
摘要:MongoDB数据导入导出及备份恢复使用。
阅读全文
摘要:简单介绍Windos环境MongoDB的安装
阅读全文
摘要:MongoDB是由数据库(database)、集合(collection)、文档对象(document)三个层次组成。MongoDB对于关系型数据库里的表,但是集合中没有列、行和关系概念,这体现了模式自由的特点.
阅读全文
摘要:遇到这种情况,重建完表和索引后,终于正常INSERT了。
阅读全文
摘要:select t2.username,t2.sid,t2.serial#,t2.logon_time
from v$locked_object t1,v$session t2
where t1.session_id=t2.sid order by t2.logon_time;
查看数据库都有哪些锁
阅读全文
摘要:select * from table_name for update;
阅读全文
摘要:grant dba to testuser ;
阅读全文
摘要:oralce 11g client安装
阅读全文
摘要:oracle 11g server安装
阅读全文
摘要:导出dmp: exp iflashbuy/password@width246 file=iflashbuy20140121.dmp owner=iflashbuy246
阅读全文
摘要:order by col (asc/desc) NULLS first 不管col如何排序 col的null(空值) 总是在最前
order by col (asc/desc) NULLS last 不管col如何排序 col的null(空值) 总是在最后
阅读全文