Ryusuke Fuda's Tech Blog

Softweare Enginier about Web, iOS, Android.

2013-06-15から1日間の記事一覧

mongoDB基本コマンド

/* DB */ db.help(); db.stats(); show dbs; use videodb; db.dropDatabase(); //connect しているDBを削除 /* collection */ db.createCollection("videos"); show collections; db.videos.drop(); //collectionの削除 db.videos.renameCollection("movies"…