mongodb:query
差分
このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン前のリビジョン次のリビジョン | 前のリビジョン | ||
mongodb:query [2014/02/23 16:32] – clownclown | mongodb:query [2025/02/16 13:53] (現在) – 外部編集 127.0.0.1 | ||
---|---|---|---|
行 1: | 行 1: | ||
- | ====== | + | # query |
- | ==== 操作系 | + | ## 操作系 |
- | * 終了 | + | ### 終了 |
- | < | + | |
- | > use admin | + | |
- | switched to db admin | + | |
- | > db.shutdownServer() | + | |
- | </ | + | |
- | | + | > use admin |
- | <code> | + | |
- | > show dbs | + | |
- | local | + | |
- | test002 0.203125GB | + | |
- | testdb | + | |
- | </ | + | |
- | * DB削除 | + | ### DB一覧取得 |
- | < | + | |
- | > show dbs | + | |
- | local | + | |
- | test002 0.203125GB | + | |
- | testdb | + | |
- | > use test002 | + | |
- | switched to db test002 | + | |
- | > db.dropDatabase() | + | |
- | { " | + | |
- | > show dbs | + | |
- | local | + | |
- | testdb | + | |
- | </ | + | |
- | | + | > show dbs |
- | <code> | + | |
- | >db.[コレクション名].drop() | + | test002 0.203125GB |
- | </ | + | testdb |
- | * カレントDBを確認 | + | ### DB削除 |
- | < | + | |
- | > db | + | |
- | testdb | + | |
- | </ | + | |
- | | + | > show dbs |
- | < | + | |
- | > show collections | + | test002 0.203125GB |
- | system.indexes | + | |
- | testcol | + | > use test002 |
- | testdata | + | |
- | </code> | + | |
+ | { " | ||
+ | > show dbs | ||
+ | local | ||
+ | testdb | ||
- | * 最適化(※db容量と同等の空き容量がシステムに必要) | + | ### コレクション削除 |
- | < | + | |
- | > use test002 | + | |
- | switched to db test002 | + | |
- | > db.repairDatabase() | + | |
- | </ | + | |
- | | + | |
+ | |||
+ | ### カレントDBを確認 | ||
+ | |||
+ | > db | ||
+ | testdb | ||
+ | |||
+ | ### カレントDBのコレクション一覧取得 | ||
+ | |||
+ | > show collections | ||
+ | system.indexes | ||
+ | testcol | ||
+ | testdata | ||
+ | |||
+ | ### 最適化(※db容量と同等の空き容量がシステムに必要) | ||
+ | |||
+ | > use test002 | ||
+ | switched to db test002 | ||
+ | > db.repairDatabase() | ||
+ | |||
+ | ### キーのリネーム | ||
http:// | http:// | ||
- | < | ||
- | > db.test002.update({}, | ||
- | </ | ||
- | ==== 一般 | ||
- | <code> | + | |
- | > db.コレクション名.処理種別( { 検索条件 } , { 取得項目 } ) | + | |
- | </ | + | ## 一般 |
+ | |||
+ | | ||
+ | |||
+ | select | ||
+ | 取得カラム(= 取得項目) | ||
+ | from | ||
+ | テーブル名(= コレクション名) | ||
+ | where | ||
+ | 検索条件 | ||
+ | |||
+ | |||
+ | ### コレクション内のレコード数取得 | ||
+ | |||
+ | > db.testdata.count() | ||
+ | 150 | ||
+ | |||
+ | ### コレクション内の先頭1件取得 | ||
+ | |||
+ | > db.testdata.findOne() | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | |||
+ | ### コレクション内のentryId=" | ||
+ | |||
+ | > db.testdata.find({entryId:" | ||
+ | ⇒型が違うので、該当なし | ||
+ | |||
+ | ### コレクション内のentryId=99のレコード取得 | ||
+ | |||
+ | > db.testdata.find({entryId: | ||
+ | { " | ||
+ | |||
+ | ### コレクション内のentryId=99のレコード件数取得 | ||
+ | |||
+ | > db.testdata.count({entryId: | ||
+ | 1 | ||
+ | |||
+ | ### コレクション内のentryId> | ||
+ | |||
+ | > db.testdata.count( { entryId: { $gt: 99 } } ) | ||
+ | 51 | ||
+ | |||
+ | ### コレクション内の99< | ||
+ | |||
+ | > db.testdata.count( { entryId: { $gte: 99, $lt: 102 } } ) | ||
+ | 3 | ||
+ | |||
+ | ### コレクション内の99< | ||
+ | |||
+ | > db.testdata.find( { entryId: { $gte: 99, $lt: 102 } } ).sort({entryId: | ||
+ | { " | ||
+ | { " | ||
+ | { " | ||
+ | |||
+ | ### コレクション内の99< | ||
+ | |||
+ | > db.testdata.find({entryId: | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | |||
+ | ### コレクション内の99< | ||
+ | |||
+ | > db.testdata.find({entryId: | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | > | ||
+ | |||
+ | ### コレクション内の2013-05-07 13時までのレコード件数取得 | ||
+ | |||
+ | > db.testdata.find({time: | ||
+ | |||
+ | ### like検索(正規表現)i:大文字小文字を同一視 | ||
+ | |||
+ | > db.access.find({referer: | ||
+ | |||
+ | ### 特定項目(以下の例ではreferer)のみ取得 | ||
+ | |||
+ | > db.access.find({}, | ||
+ | { " | ||
+ | |||
+ | ### 登録・更新 | ||
+ | |||
+ | > db.collect.save( { a : 1 } ) | ||
+ | | ||
+ | |||
+ | ### 削除 | ||
+ | |||
+ | > db.collect.remove( { a : 1 } ) | ||
+ | |||
+ | ### sql対比 | ||
- | < | + | { " |
- | select | + | |
- | 取得カラム(= 取得項目) | + | |
- | from | + | |
- | テーブル名(= コレクション名) | + | |
- | where | + | |
- | 検索条件 | + | |
- | </ | + | |
+ | { " | ||
+ | SELECT * FROM test WHERE a != ' | ||
- | * コレクション内のレコード数取得 | + | |
- | < | + | SELECT |
- | > db.testdata.count() | + | |
- | 150 | + | |
- | </ | + | |
- | | + | { "a": |
- | < | + | |
- | > db.testdata.findOne() | + | |
- | { | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | | + | |
- | < | + | |
- | > db.testdata.find({entryId:"99"}) | + | |
- | ⇒型が違うので、該当なし | + | |
- | </ | + | |
- | | + | { "a": |
- | < | + | |
- | > db.testdata.find({entryId: | + | |
- | { "_id" : ObjectId("5109be7579ee8df58e8fed08" | + | |
- | </ | + | |
- | | + | { " |
- | < | + | |
- | > db.testdata.count({entryId:99}) | + | |
- | 1 | + | |
- | </code> | + | |
- | | + | { " |
- | < | + | |
- | > db.testdata.count( | + | |
- | 51 | + | |
- | </code> | + | |
- | | + | { " |
- | < | + | |
- | > db.testdata.count( | + | |
- | 3 | + | |
- | </ | + | |
- | | + | { "a": { "$gte" |
- | < | + | |
- | > db.testdata.find( { entryId: { $gte: 99, $lt: 102 } } ).sort({entryId: | + | |
- | { "_id" : ObjectId(" | + | |
- | { "_id" : ObjectId(" | + | |
- | { " | + | |
- | </code> | + | |
- | | + | { "a": "b", "c": "d" } |
- | < | + | |
- | > db.testdata.find({entryId: | + | |
- | { | + | |
- | | + | |
- | | + | |
- | | + | |
- | " | + | |
- | } | + | |
- | { | + | |
- | " | + | |
- | " | + | |
- | " | + | |
- | " | + | |
- | } | + | |
- | { | + | |
- | " | + | |
- | " | + | |
- | " | + | |
- | " | + | |
- | } | + | |
- | </ | + | |
- | | + | { "$and": [ { "a": "b" |
- | < | + | |
- | > db.testdata.find({entryId: | + | |
- | { | + | |
- | | + | |
- | " | + | |
- | " | + | |
- | " | + | |
- | } | + | |
- | { | + | |
- | | + | |
- | " | + | |
- | " | + | |
- | " | + | |
- | } | + | |
- | { | + | |
- | " | + | |
- | " | + | |
- | " | + | |
- | " | + | |
- | } | + | |
- | > | + | |
- | </ | + | |
- | | + | { " |
- | < | + | SELECT * FROM test WHERE (a = ' |
- | > db.testdata.find({time: {$gte: ISODate("2013-05-07T13: | + | |
- | </ | + | |
- | | + | { " |
- | < | + | |
- | > db.access.find({referer: / | + | |
- | </ | + | |
- | | + | { " |
- | < | + | |
- | > db.access.find({}, {referer:1}) | + | |
- | { "_id" : ObjectId("510b0daeddfe4129a7000002"), "referer" : "http:// | + | |
- | </ | + | |
- | | + | { " |
- | < | + | |
- | > db.collect.save( | + | |
- | </ | + | |
- | | + | { " |
- | < | + | |
- | > db.collect.remove( | + | |
- | </ | + | |
- | * sql対比 | ||
- | < | ||
- | { " | ||
- | SELECT * FROM test WHERE a = ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a != ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a IN (' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a NOT IN (' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a IS NULL | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a IS NOT NULL | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a < ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a > ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a <= ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE a >= ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE (c = ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE (a = ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE (a = ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE ((c = ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE (a = ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE ((c = ' | ||
- | |||
- | { " | ||
- | SELECT * FROM test WHERE ((a = ' | ||
- | </ | ||
mongodb/query.1393173160.txt.gz · 最終更新: 2025/02/16 13:50 (外部編集)