Structured Query Language의 약자로 R-DBMS를 관리하고 이용하는데 사용되는 언어
테이블 > 테이블 스크립팅 > create > 새 쿼리 편집기 창
DDL 샘플 출력 가능
데이터 베이스 확인 > 새 쿼리 클릭
select 'hello', 123+123;
실제로 열 이름이 없지만 조회는 가능
select GETDATE();
select * from 테이블;
select [ID], [Name], [Address]
from 테이블;
Contacts 테이블의 id가 1인 모든 값을 조회
select * from Contacts
where [ID] = 1;
Contacts 테이블의 id가 3보다 작은 ID 와 이름 출력
select [ID], [Name] from Contacts
where [ID] < 3;
id가 0보다 큰 Contacts 테이블의 생일 오름차순 순서로 출력
select * from Contacts
where [ID] > 0
order by [Birthday];
id가 0보다 큰 Contacts 테이블의 생일 내림차순 순서로 출력
select * from Contacts
where [ID] > 0
order by [Birthday] desc;