kyohoonsim / kusf-data-2023-1

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

Quiz8. MLB 한국 출생 선수 조회 #10

Open dolzi opened 1 year ago

dolzi commented 1 year ago
  1. [SQL 쿼리] [실행화면 캡쳐]
indianaPoly commented 1 year ago
  1. select nameFirst, nameLast, birthCountry, birthCity, weight, height from people where birthCountry like '%Korea%'; 스크린샷 2023-06-10 오전 10 54 49
Y0nghwan commented 1 year ago

SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height
FROM people WHERE birthCountry LIKE '%Korea%';

image

expediore commented 1 year ago
  1. select nameFirst, nameLast, birthCountry, birthCity, weight, height from people where birthcountry like '%Korea' ; image
aosdbfc commented 1 year ago

SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height FROM people WHERE birthCountry LIKE '%Korea%';

image

hungrywoo commented 1 year ago
  1. SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height FROM people WHERE birthCountry LIKE '%Korea'; image
echoe1009 commented 1 year ago

SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height FROM people WHERE birthCountry LIKE '%Korea';

image

jjjjjjye commented 1 year ago

#8 SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height FROM people WHERE birthCountry LIKE '%Korea';

8
dhEhdod commented 1 year ago
  1. SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height FROM people WHERE birthCountry LIKE '%Korea%';

image

WooJHo commented 1 year ago

SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height from people where birthCountry like '%Korea'; image

KUSFTWOO commented 1 year ago

SELECT nameFirst, nameLast,birthCountry, birthCity, weight, height FROM people WHERE birthcountry LIKE '%Korea%'; image

SHINZIMIN commented 1 year ago

8.

SELECT nameFirst, nameLast, birthCountry, birthCity,weight, height FROM people WHERE birthCountry LIKE '%korea'

image

JJungEunnn commented 1 year ago

SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height FROM people WHERE birthcountry LIKE '%Korea';

image
monimanimo commented 1 year ago

select namefirst, namelast, birthcountry, birthcity, weight, height from people where birthCountry like '%korea%'; image

BAEKDONGSEOK commented 1 year ago

image

YelynYoo commented 1 year ago

8. select nameFirst, nameLast, birthCountry, birthCity, weight, height from people where birthCountry like '%Korea%';

image

2gyuheon commented 1 year ago

SELECT nameFirst, nameLast, birthCountry, birthCity, weight, height FROM people WHERE birthCountry LIKE '%Korea%'; 주석 2023-06-10 110518

last0331 commented 1 year ago

SELECT nameLast, nameLast, birthCountry, birthCity,weight, height FROM people WHERE birthcountry LIKE '%korea%';

quiz 8 -2