데이터베이스 만들기

use 명령어

use [db명] 으로 데이터 베이스를 이동할 수 있지만, [db명]이 존재하지 않을때에는 자동으로 새로운 db를 생성해 줍니다.

db.users.insert({username:”hello”})

를 통해서 테이블(?)을 추가할 수 있습니다. 하지만, 계속 같은 입력을 하면, 중복되는 값이 추가가 됩니다.

collection 정보 읽어오기

db.users.find()

db.users 안에 담긴 모든 정보를 읽어오는 명령어 입니다.

db.users.find({username:”hello”})

username이 hello 인 사람의 정보만 읽어오기.

collection 추가/변경 하기

db.users.update({username:”hello},{$set: {phone:”010-4947-1234”})

username 이 hello 인 정보에 phone 정보를 추가/변경 하는 명령어 입니다.

삭제하기

db.users.remove({username:”hello”})

username 이 hello인 정보를 갖고 있는 collection을 지우는 명령어

반응형

'개발 > 리눅스' 카테고리의 다른 글

centos 7 yum 깨짐  (0) 2017.12.05
centos 7 커널 최신버전으로 설치하기  (0) 2017.09.18
리눅스 daemon 항목들 정리  (0) 2016.08.09
소유자, 그룹 변경하기  (0) 2016.07.28
우분투에서 일본어 사용하기  (0) 2016.07.18

+ Recent posts