728x90
반응형
공부영상 : https://www.youtube.com/playlist?list=PL1VTPqi5Xgu9pr3oK_j4ranMGEn6fKMFp
<설치과정>
클릭하면 사이트로 넘어감
다운받고 설치 누르면 끝!
실습용 데이터자료 : 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
반응형
'입사후 공부한 내용' 카테고리의 다른 글
[MSSQL] 연결 에러 해결! (0) | 2023.06.16 |
---|---|
[ASP.NET] MVC강의 기초 및 심화 (0) | 2023.06.13 |
[ASP.NET] 개념과 역사 (0) | 2023.06.13 |
AWS EC2 가상서버 만들기 + 연결하기 (0) | 2023.06.13 |
비주얼 스튜디오 코드에 mssql 연결하는 방법 (0) | 2023.06.08 |