kyohoonsim / kusf-data-2023-1

2023-1 KUSF data 수업 강의자료 레포지토리
17 stars 1 forks source link

Quiz2. WHERE #3

Open kyohoonsim opened 1 year ago

kyohoonsim commented 1 year ago

2-1. [SQL 쿼리] [실행화면 캡쳐]

2-2. [SQL 쿼리] [실행화면 캡쳐]

indianaPoly commented 1 year ago

1. [쿼리] select name from player where country = '한국' and age like '3%';

스크린샷 2023-05-31 오후 6 46 05

2. [쿼리] select * from player where age >= 30 and (company is null or country not in ('포르투갈'));

스크린샷 2023-05-31 오후 6 51 52
jjjjjjye commented 1 year ago

2-1 SELECT * FROM player WHERE age >= 30 AND country = '한국';

2-1

2-2 SELECT * FROM player WHERE age >=30 AND company IS NULL OR age >=30 AND country != '포르투갈';

2-2
JJungEunnn commented 1 year ago

2-1

image

2-2

image
last0331 commented 1 year ago

2-1. SELECT * FROM player WHERE age LIKE '3%' AND country = '한국';

QUIZ 2

2-2. SELECT * FROM player WHERE age >=30 AND country != '포르투갈';

QUIZ 2 -2

WooJHo commented 1 year ago

2-1.
정답 1) SELECT FROM player where age < 40 and age >= 30 AND country = '한국'; 정답 2) select FROM player where age like '3%' and country = '한국'; image

2-2. SELECT * FROM player where age >= 30 AND (company is null or country != '포르투갈'); image

BAEKDONGSEOK commented 1 year ago

2-1 image

2-2 image

xinnazim commented 1 year ago

2-1. SELECT * FROM player WHERE age LIKE '3%' AND country='한국'; DBeaver 23 0 5 - _52 79 134 175 2_ Script-2 2023-05-31 오후 6_45_45

2-2. SELECT * FROM player WHERE age >= 30 AND (company IS NULL OR country !='포르투갈'); DBeaver 23 0 5 - _52 79 134 175 2_ Script-2 2023-05-31 오후 6_52_29

Y0nghwan commented 1 year ago

2-1 image 2-2 image

echoe1009 commented 1 year ago

2-1. SELECT * FROM player WHERE age >= 30 AND country = '한국'; image

2-2. SELECT * FROM player WHERE age >= 30 AND country != '포르투갈' OR country IS NULL; image

jeong1217 commented 1 year ago

2-1. [SQL 쿼리] [실행화면 캡쳐]

퀴즈 5 31

2-2. [SQL

퀴즈 5 31 2번

KUSFTWOO commented 1 year ago

select*from player where age like '3%' and country = '한국'; 퀴즈 2-1 캡쳐

select*from player where age >=30 and country !='포르투갈'; 퀴즈 2-2 캡쳐

hungrywoo commented 1 year ago

2-1. SELECT name FROM player WHERE age LIKE '3%' AND country = '한국'; image

2-2. SELECT * FROM player WHERE age >=30 AND (company IS NULL OR country != '포르투갈'); image

dhEhdod commented 1 year ago

2-1. SELECT name FROM player WHERE age LIKE '3%' AND country = '한국'; image

2-2. SELECT * FROM player WHERE age >= 30 AND (company is NULL OR country != '포르투갈'); image

expediore commented 1 year ago

3-1. select name from player where (age between 30 and 39) and country = '한국'; image

3-2. select * from player where age >= 30 and (company is null or country != '포르투갈'); image

aosdbfc commented 1 year ago

image

image

yibeeeen commented 1 year ago

2-1 SELECT * from player where age like '3%' and country = '한국';

스크린샷 2023-05-31 오후 6 57 14

2-2 SELECT * from player where age >= '30' and (company is null or country <> '포르투갈') ;

스크린샷 2023-05-31 오후 6 59 45
YelynYoo commented 1 year ago

2-1. age like '3%' and country = '한국'; image

2-2. select * from player where age >=30 and (company is null or country <>'포르투갈'); image

last0331 commented 1 year ago

2-1. SELECT name FROM player WHERE age LIKE '3%' AND country = '한국'; quiz 2 - 1

2-2. SELECT * FROM player WHERE age >=30 AND country != '포르투갈'; QUIZ 2 -2

2gyuheon commented 1 year ago

2-1. SELECT name FROM player WHERE age LIKE '3%' AND country = '한국'; 주석 2023-05-31 184650 2-2. SELECT * FROM player WHERE age >=30 AND country != '포르투갈'; 주석 2023-05-31 190209

monimanimo commented 1 year ago

2-1 Select name from player where age like ‘3%’ and country = ‘한국 image 2-2 Select * from player where age >=30 and (company is null or country <> ‘포르투갈’); image

SHINZIMIN commented 1 year ago

2-1 SELECT name FROM player WHERE age LIKE '3%' AND country = '한국'; image

2-2 SELECT * FROM player WHERE (company IS NULL OR country != '포르투갈') AND age >= 30; image

aosdbfc commented 1 year ago

image

image