728x90
반응형

공부영상 : https://www.youtube.com/playlist?list=PL1VTPqi5Xgu9pr3oK_j4ranMGEn6fKMFp 

 

MS-SQL

현재 인디애나 대학의 재무 박사과정에 있는 저의 전 조교 안연주 조교가 두물머리의 한태경이사의 도움을 받아 만든 과정입니다.

www.youtube.com

 

<설치과정>

클릭하면 사이트로 넘어감

다운받고 설치 누르면 끝!

 

실습용 데이터자료 : https://github.com/htk1019/sql_server_beginner

해당 자료는 다음 위치에 옮기기

 

프로그램 키기

프로그램이 실행되면 바로 커넥트를 누른다.

공부용 자료 추가하는 방법

이후 OK를 누르면 끝

 

use study (study라는 데이터베이스를 사용하겠다)

go (코드 구분자, go 이전의 코드를 실행 후 다음 코드를 실행하라고 지정함)

 

use study
go
select * from companyinfo

select * from study.dbo.companyinfo

select * from study..companyinfo

study데이터베이스에 존재하는 companyinfo 데이터 테이블의 내용을 가져오라는 의미

 

select distinct IncInCtryCode from companyinfo

중복없이 가져오는 distinct

 

select * from companyinfo where IncInCtryCode='kor'

조건을 거는 where절

 

 

와일드카드

select * from companyinfo where name like 'a%'

a로 시작하는 모든 기업name 찾기

 

select * from companyinfo where name like 'a____'

a로 시작하고 뒤에는 4개의 문자로 이루어진 이름 찾기

 

select IncInCtryCode, Employees, Name 
from companyinfo
where IncInCtryCode is not null
order by IncInCtryCode, Employees DESC

순서정렬 기본은 오름차순인 asc, 그리고 내림차순 desc

 

실무3편

 

실무 4편

 

 

 

 

실무 5편

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

728x90
반응형

+ Recent posts