Update Operators 수정 연산자 - Update Operator는 DB에 저장된 데이터를 수정하거나 새로운 데이터를 추가할 수 있게 하는 연산자이다. - MongoDB 5.0 버전부터, 수정 연산자는 Document의 Field 이름이 string Type인 경우 Lexicographic Order(사전순)로 처리하고, numeric Type인 경우 Numeric Order(수치순)로 처리한다. Example. MongoDB 5.0 vs Earlier { $set: { "a.2": , "a.10": , } } MongoDB 5.0 : "a.2" 필드를 먼저 처리한다. (Numeric Order상, 2가 10보다 먼저이기 때문이다.) MongoDB Earlier : "a.10" 필드를 먼저 처리..
Operators 연산자 - MongoDB에서 지원하는 연산자에 대해 알아본다. - MongoDB에시 지원하는 연산자들의 큰 범주는 아래와 같다. Query and Projection Operators Update Operators Aggregation Pipeline Stages Aggregation Pipeline Operators Query Modifiers Query and Projection Operators (URL) [Database/MongoDB] Query and Projection Operators | 쿼리 연산자 및 프로젝션 연산자 Query and Projection Operators 쿼리 연산자 및 프로젝션 연산자 - Query Operator는 DB 내에서 데이터를 검색하는 연산..
MongoDB Shell (\(\texttt{mongosh}\)) 몽고DB 쉘 Shell Instructions (쉘 명령어) show databases (=show dbs) - 현재 MongoDB에 생성된 데이터베이스들의 이름과 크기를 출력한다. show collections - 현재 데이터베이스에 생성된 Collection들의 이름을 출력한다. use - 데이터베이스를 선택한다. db.createCollection("") - 현재 데이터베이스에 Collection을 생성한다. - {"ok" : 1} 메시지가 출력되면 Collection이 정상적으로 생성된 것이다. Reference: MongoDB (URL) Reference: MongoDB Documentation (URL)
MongoDB Preview 몽고DB 개요 (URL) MongoDB: The Application Data Platform Get your ideas to market faster with an application data platform built on the leading modern database. MongoDB makes working with data easy. www.mongodb.com Mongo DB Settings (몽고DB 설정) * Windows \(\texttt{cmd}\) Commands C:\>net start MongoDB MongoDB Server 서비스를 시작합니다.. MongoDB Server 서비스가 잘 시작되었습니다. C:\>net stop MongoDB Mongo..
PostgreSQL Syntax PostgreSQL 문법 PSQL Command - PSQL의 CUI 환경에서 사용하는 명령어이다. \? \? - PSQL Command 관련 도움말을 출력한다. \h \h - SQL Commnad 관련 도움말을 출력한다. \c [DB_name] [Connection_User] \c [DB_Name] [Connection_User] - Query를 실행할 DB Instance에 입장한다. \list or \l \list -- 또는 \l - 전체 DB Instance 리스트를 출력한다. \d[t | s | f | v | u] [+] \dt -- 현재 접속중인 DB Instance의 Table 목록을 출력한다. \ds -- Sequence 목록을 출력한다. \df -- Fun..