데이터 분석/MySQL 3

디비버(Dbeaver) 설치 방법 및 실행해보기

1. 다운을 위해 디디버 웹사이트에 접속한다. DBeaver Community | Free Universal Database ToolDBeaver Universal Database Tool DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data. It supports all popular SQL databases like MySQL, MariaDB, PostgreSQL, SQLite, Apachdbeaver.io  2. DOWNLOAD 탭을 클릭한다.  3. Windows (installer)를 클릭한다. (각자 ..

MYSQL 설치 방법 (window)

1. MySQL 웹사이트 접속 MySQLOver 2000 ISVs, OEMs, and VARs rely on MySQL as their products' embedded database to make their applications, hardware and appliances more competitive, bring them to market faster, and lower their cost of goods sold. Learn More »www.mysql.com  2. DOWNLOADS 탭 클릭  3. MySQL community Dowmloads 클릭  4. MySQL Installer for Windows 클릭  5. MSI Installer 다운받기  6. 좌측 하단의 No thanks, j..

SQL 기초 01. DDL, DML, DCL (+ 예시)

1. 용어정리 Table : 빠른 참조를 위해 적당한 형태로 자료를 모아 놓은 것. 관계 데이터 베이스 모델(relational data base model)에서 자료의 구조를 2차원의 표로 나타낸 것이다. 행과 열의 형태로 관리되며 키를 지정함으로써 원하는 자료를 빠르고 쉽게 찾아 낼 수도 있다. Row(행) : 관계형 데이터베이스에서 레코드(record) 또는 튜플(tuple)로 불리기도 하며, 어떤 테이블에서 단일 구조 데이터 항목을 가리킨다. 간단히 말해, 데이터베이스 테이블은 로우와 컬럼 또는 필드로 구성되어 있다고 간주할 수 있다. 각 테이블의 행은 일련의 관련 자료를 나타내며, 한 테이블 내 모든 로우는 동일한 구조를 가지고 있다. Column(열) : 관계형데이터베이스 테이블에서 특정한 단..