Disclaimer 아래 내용은 코드잇 강의 'SQL로 하는 데이터 분석'을 수강하며 간단하게 정리한 내용입니다. 순서대로 듣는 것이 아닌 저에게 필요한 부분만 골라 듣습니다. (SQL기본 조회 방법은 생략합니다) 데이터베이스 기본 개념 - 데이터베이스 : 일정한 체계 속에 저장된 데이터의 집합 - DBMS(=DataBase Management System) : 데이터베이스 관리 시스템 (MySQL, Oracle 등) / 데이터베이스 구축하는 것도 DBMS를 선택하는 것부터 시작하게 된다. - SQL(Structured Query Language) : DBMS에 명령을 내리기 위해 사용하는 언어 - primary key : 테이블에서 하나의 row를 고유하게 식별할 수 있도록 해주는 column - na..
SARGable Query란 무엇일까? https://en.wikipedia.org/wiki/Sargable Sargable - Wikipedia In relational databases, a condition (or predicate) in a query is said to be sargable if the DBMS engine can take advantage of an index to speed up the execution of the query. The term is derived from a contraction of Search ARGument ABLE. A query failing en.wikipedia.org In relational databases, a condition (or pr..