2010. 3. 9. 08:54
SQL 명령어 서브 쿼리, 테이블 조인 구문
2010. 3. 9. 08:54 in ICT와 AI 정보
서브 쿼리SELECT title, type, price FROM titles WHERE title_id IN (SELECT title_id FROM titleauthor WHERE au_id = '998-72-3567')SELECT title_id FROM titles WHERE title_id IN (SELECT title_id FROM sales)
테이블 조인 - 내부 조인 (교집합 형태). 일반적으로 많이 쓰임. SELECT t.title, t.price, p.pub_name, p.city, p.stateFROM titles AS t, publishers AS pWHERE t.pub_id = p.pub_id - 내부 조인의 표준 SQL 문장SELECT t.title, t.price, p.pub_name, p.city, p.stateFROM titles AS t INNER JOIN publishers AS pON t.pub_id = p.pub_idSELECT a.city, p.pub_nameFROME authors AS a INNER JOIN publishers AS pON a.city = p.city - 외부 조인(합집합 형태). 왼쪽 테이블 기준SELECT t.pub_id, p.pub_id, t.title, t.price, p.pub_name, p.city, p.stateFROM titles AS t LEFT OUTER JOIN publishers AS pON t.pub_id = p.pub_id - 외부 조인. 오른쪽 테이블 기준SELECT t.pub_id, p.pub_id, t.title, t.price, p.pub_name, p.city, p.stateFROM titles AS t RIGHT OUTER JOIN publishers AS pON t.pub_id = p.pub_id
'ICT와 AI 정보' 카테고리의 다른 글
매개변수와 리턴 값이 있는 함수, 없는 함수 (0) | 2010.03.14 |
---|---|
매개변수 전달방식 (0) | 2010.03.13 |
SQL 명령어 구문들 (Statements) (0) | 2010.03.12 |
SQL 명령어 뷰(view), 트랜잭션(Transaction) 구문 (0) | 2010.03.10 |
SQL 명령어 INSERT, UPDATE, DELETE 구문 (0) | 2010.03.08 |
SQL 명령어 SELECT 구문 (0) | 2010.03.07 |
리눅스 센드메일(Sendmail) 서버 구축 (0) | 2010.03.06 |
리눅스 OpenSSH 서버 (0) | 2010.03.05 |