Computer Language/Database
출처 : https://www.codeproject.com/Articles/33052/Visual-Representation-of-SQL-Joins This article describes SQL Joins in a visual manner, and also the most efficient way to write the visualized Joins. This is just a simple article visually explaining SQL JOINs. In this article I am going to discuss seven different ways you can return data from two relational tables. The seven Joins I will discuss ..
1) Database란? 효율적 데이터 사용을 위해 자료를 저장하고 사용할 수 있게 도와주는 저장방식 중 하나. 우리는 여기서 SQL(Structured Query Language)를 사용한다. 2) DBMS(Database Management System) 데이터베이스라는 데이터 집합을 만들고, 저장 및 관리할 수 있게 기능을 제공하는 특화된 프로그램 Oracle, mySQL, MariaDB, MSSQL 등등 3) SQL(Structured Query Language) 데이터를 정의, 조작, 제어하기 위해 사용되는 언어로, 목적에 따라 크게 3가지로 구분한다. 속성 설명 명령어 DDL 데이터베이스 생성, 삭제 테이블 생성, 삭제, 수정 CREATE, ALTER, DROP DML 데이터 입력, 데이터 조..