首页 > 数据库技术
MongoDB - MongoDB CRUD Operations, Query Documents
Query Method MongoDB provides the db.collection.find() method to read documents from a collection. The db.collection.find() method returns a cursor to ...
分类:数据库技术   时间:2016-12-01 07:43:46    收藏:0  评论:0  赞:0  阅读:306
MongoDB - MongoDB CRUD Operations, Query Documents, Project Fields to Return from Query
By default, queries in MongoDB return all fields in matching documents. To limit the amount of data that MongoDB sends to applications, you can includ ...
分类:数据库技术   时间:2016-12-01 07:42:53    收藏:0  评论:0  赞:0  阅读:326
MongoDB - MongoDB CRUD Operations, Query Documents, Query for Null or Missing Fields
Different query operators in MongoDB treat null values differently. The examples on this page use the db.collection.find() method in the mongo shell. ...
分类:数据库技术   时间:2016-12-01 07:41:39    收藏:0  评论:0  赞:0  阅读:354
MongoDB - MongoDB CRUD Operations
CRUD operations create, read, update, and delete documents. Create Operations Create or insert operations add new documents to a collection. If the co ...
分类:数据库技术   时间:2016-12-01 07:40:04    收藏:0  评论:0  赞:0  阅读:332
任务一、完成学员报名的DB设计并读写数据库
学员线下报名格式为: 姓名: qq: 修真类型: 预计入学时间: 毕业院校: 线上学号: 日报链接: 立愿: 推荐人: 分析业务模型需要两个方面:基础业务对象、基础业务。搜索资料的时候,觉得类图(class diagram)是一种分析方法,它是OOA(面向对象分析)和OOD(面向对象设计)的重要思想 ...
分类:数据库技术   时间:2016-12-01 07:38:47    收藏:0  评论:0  赞:0  阅读:463
MongoDB - The mongo Shell, mongo Shell Quick Reference
mongo Shell Command History You can retrieve previous commands issued in the mongo shell with the up and down arrow keys. Command history is stored in ...
分类:数据库技术   时间:2016-12-01 07:37:16    收藏:0  评论:0  赞:0  阅读:310
mysql小节
到今天为止,mysql基础篇就告一段落了,基本的操作都系统的学了一遍。 MYSQL: 什么是msql,数据库的分类,关系模型,数据库的组成,sql简介,mysql简介,MYSQL登录 基本sql操作: 操作数据库:查看数据库,创建数据库,删除数据库,选择数据库。 数据表的操作:查看存在的数据表,创建 ...
分类:数据库技术   时间:2016-12-01 04:03:03    收藏:0  评论:0  赞:0  阅读:310
本地网址连不上远程mysql问题
问题:host 'XXX.XXX.XXX.XXX'is not allowed to connect to this MySQL server 解决办法: 如果没有‘%’需要添加 如果有则直接 ...
分类:数据库技术   时间:2016-12-01 03:59:42    收藏:0  评论:0  赞:0  阅读:293
mysql连接查询,封装mysql函数
连接查询 交叉连接语法: select * | 字段列表 from 表1 cross join 表2 内连接: select *|字段列表 from 左表 inner join 右表 on 左表.字段 = 右表.字段; (inner可以省略) 左外连接(左连接) select *|字段列表 from ...
分类:数据库技术   时间:2016-12-01 03:58:13    收藏:0  评论:0  赞:0  阅读:368
mysql 基本操作
创建数据库 ...
分类:数据库技术   时间:2016-12-01 03:49:59    收藏:0  评论:0  赞:0  阅读:145
Oracle 使用命令导入dmp文件
若要导入到特定的表空间则需要新建表空间,若不要求,则用已有的,则只需执行下面的步骤 在dos窗口中输入imp 用户名/密码@ip地址:端口号/数据库实例 file='需要导入的dmp文件的路径' full = y(可能需要) 下面是建立表空间和用户的步骤: 用户 建立:create user 用户名 ...
分类:数据库技术   时间:2016-12-01 03:48:57    收藏:0  评论:0  赞:0  阅读:327
MongoDB - The mongo Shell, Data Types in the mongo Shell
MongoDB BSON provides support for additional data types than JSON. Drivers provide native support for these data types in host languages and the mongo ...
分类:数据库技术   时间:2016-12-01 03:43:57    收藏:0  评论:0  赞:0  阅读:272
mysql基础2
一、列属性 所谓的列属性,就是在定义一个列(字段)的时候对该列设置的额外的信息或约束! null和not null 默认情况下,字段都允许为空(缺省值为null),如果加上not null,意思就是这个字段不能为空,所以,not null也叫作非空约束! 当我们没有给一个not null属性的字段插 ...
分类:数据库技术   时间:2016-12-01 03:41:56    收藏:0  评论:0  赞:0  阅读:190
MongoDB - The mongo Shell, Configure the mongo Shell
Customize the Prompt You may modify the content of the prompt by setting the variable prompt in the mongo shell. The promptvariable can hold strings a ...
分类:数据库技术   时间:2016-12-01 03:40:22    收藏:0  评论:0  赞:0  阅读:203
MongoDB - Introduction of the mongo Shell
Introduction The mongo shell is an interactive JavaScript interface to MongoDB. You can use the mongo shell to query and update data as well as perfor ...
分类:数据库技术   时间:2016-12-01 03:38:00    收藏:0  评论:0  赞:0  阅读:201
MongoDB - The mongo Shell, Access the mongo Shell Help
In addition to the documentation in the MongoDB Manual, the mongo shell provides some additional information in its “online” help system. This documen ...
分类:数据库技术   时间:2016-12-01 03:34:10    收藏:0  评论:0  赞:0  阅读:151
_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h':问题的解决 mysql安装python
在win7下安装了Python后,想安装python-MySQL,使用pip安装出现如下问题: >pip install MySQL-python _mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': ...
分类:数据库技术   时间:2016-12-01 03:28:03    收藏:0  评论:0  赞:0  阅读:255
MongoDB - The mongo Shell, Write Scripts for the mongo Shell
You can write scripts for the mongo shell in JavaScript that manipulate data in MongoDB or perform administrative operation. For more information abou ...
分类:数据库技术   时间:2016-12-01 03:26:50    收藏:0  评论:0  赞:0  阅读:235
【练习】数据文件的更改:改名或改路径 users01.dbf-->users01_bak.dbf
方法一:1.将数据文件的状态offline 2.操作系统层面完成真正mv改名操作 3.数据库层面修改数据文件名 >告诉数据库 4.把更改完之后的文件置为Online对外提供服务表空间->online 方法二:(适用所有数据文件,但是系统文件只能用这种方式)1、shutdown 关库 2.操作系统层面 ...
分类:数据库技术   时间:2016-12-01 03:25:04    收藏:0  评论:0  赞:0  阅读:265
json返回数据库的时间格式为/Date(1477294037000)/,怎样在前台进行格式化转换
方法一: 方法二: -转载 ...
分类:数据库技术   时间:2016-12-01 03:24:34    收藏:0  评论:0  赞:0  阅读:179
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!