SQL

[SQL 연습 문제 5] 공부하다 보니 팀 프로젝트 시간이 왔어요!

thebuck104 2024. 6. 10. 18:50

 

[SQL 연습 문제 5] 공부하다 보니 팀 프로젝트 시간이 왔어요!

 

id name start_date end_date aws_cost
1 일조 2023-01-01 2023-01-07 30000
2 꿈꾸는이조 2023-03-15 2022-03-22 50000
3 보람삼조 2023-11-20 2023-11-30 80000
4 사조참치 2022-07-01 2022-07-30 75000

 

위와같은 team_projects 테이블이 있다.

 

17. team_projects 테이블에서 AWS 예산(aws_cost)이 40000 이상 들어간 프로젝트들의 이름을 선택하는 쿼리를 작성해주세요!

select name from team_projects 
where aws_cost >= 40000 ;

 

18. team_projects 테이블에서 2022년에 시작된 프로젝트를 선택하는 쿼리를 작성해주세요! 단, start_date < ‘2023-01-01’ 조건을 사용하지 말고 쿼리를 작성해주세요!

select * from team_projects
where year(start_date) = 2022;

select * from team_project
where start_date like "2022%";

 

19. team_projects 테이블에서 현재 진행중인 프로젝트를 선택하는 쿼리를 작성해주세요. 단, 지금 시점의 날짜를 하드코딩해서 쿼리하지 말아주세요!

select * from team_project
where end_date > now();

select * from team_project
where end_deat > curdate();

 

20. team_projects 테이블에서 각 프로젝트의 지속 기간을 일 수로 계산하는 쿼리를 작성해주세요!

select date(end_date - start_date) 
from team_project;

select datediff(end_date, start_date)
from team_project;