DataBase(35)
-
[SQLite] Python 환경에서 select 처리
I. SQLite DB확인 (1) DataBase : sqlite (2) Table : tblmember (3) Table Data II. Python환경에서 SQLite의 데이터 조회 C:\DBExam\SQLiteExam\sqlite.db의 DataBase에 내용은 상위 사진과 동일하다. 출력 결과 SOURCE CODE hyunmin94/study_exam Contribute to hyunmin94/study_exam development by creating an account on GitHub. github.com
2020.05.31 -
[SQLIte] 설치방법
■ SQLite MySQL나 PostgreSQL와 같은 데이터베이스 관리 시스템이지만, 서버가 아니라 응용 프로그램에 넣어 사용하는 비교적 가벼운 데이터베이스이다. Ⅰ 설치 경로 SQLite administration | SQLite Expert SQLite Expert: The expert way to SQLite SQLite Expert is a powerful tool designed to simplify the development of SQLite3 databases. It is a feature rich administration and development tool for SQLite designed to answer the needs of all users from writing s sql..
2020.05.28 -
[NoSQL] MongDB 설치 방법
■ MongoDB 크로스 플랫폼 도큐먼트 지향 데이터베이스 시스템이다. NoSQL 데이터베이스로 분류되는 몽고DB는 JSON과 같은 동적 스키마형 도큐먼트들(BSON)을 선호함에 따라 전통적인 테이블 기반 관계형 데이터베이스 구조의 사용을 삼간다. Ⅰ 설치 경로 www.mongodb.com/ The most popular database for modern apps We're the creators of MongoDB, the most popular database for modern apps, and MongoDB Atlas, the global cloud database on AWS, Azure, and GCP. Easily organize, use, and enrich data — in real t..
2020.05.28 -
[DB] MySQL SQL파일 실행 및 백업
■ SQL파일 실행 1. 프롬프트(cmd) 환경 예시) mysql -u(유저명) -p 백업파일이름.sql mysqldump -uroot -p testDB > testDBFile.sql 1) testdb 데이터베이스를 testdbBackup.sql 파일에 백업 2) 1)번에서 백업처리 파일이 해당경로에 설치되었는지
2020.05.27 -
[DB] MySQL 제약조건 확인
■ 전체 제약 조건 확인 DataBase : INFORMATION_SCHEMA Table : TABLE_CONSTRAINTS SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS;
2020.05.26 -
[DB] MySQL 다중 열 서브쿼리
■ IN 연산자 서브 쿼리의 다중 열의 데이터가 부모쿼리의 다중 열의 데이터와 짝으로 일치할 경우 레코드 반환 기본구조 SELECT 컬럼, 컬럼 … FROM 테이블 WHERE (컬럼1, 컬럼2, …) IN (SELECT 컬럼1, 컬럼2, … FROM 테이블); SELECT * FROM EMP WHERE (EMPNO, JOB) IN (SELECT EMPNO, JOB FROM EMP WHERE DEPTNO = 20); ※ 참고 [DB] MySQL 다중행 서브쿼리 연산자 1. IN ※ 하나의 컬럼을 여러개의 "=" 조건으로 처리해야할 경우 사용 설명) SAL 컬럼 데이터 중 1300, 800, 950 인 레코드만 출력 SELECT ENAME, SAL, DEPTNO FROM EMP WHERE SAL IN (SE..
2020.05.25