반응형
반응형
본문 바로가기

query3

SQL 09 – Numeric Examples SQL 09 – Numeric Examples Database Problems 문제 1. 다음 예시에서는 다음에 응답한 번호를 보여 줍니다. 1번 문제입니다. '에딘버그 네이피어 대학교'에서요 '(8) 컴퓨터 과학'을 공부합니다. 강력하게 동의하는 비율을 표시합니다. 정답 1 2 3 4 5 6 7 8 9 SELECT A_STRONGLY_AGREE FROM nss WHERE question='Q01' AND institution='Edinburgh Napier University' AND subject='(8) Computer Science' cs 문제 2. 15번 문제는 100점 이상 받은 기관과 주제를 제시하세요. Show the institution and subject where the score .. 2022. 1. 13.
SQL Zoo 07 - JOIN SQL Zoo 07 - JOIN Database 문제 1. The first example shows the goal scored by a player with the last name 'Bender'. The * says to list all the columns in the table - a shorter way of saying matchid, teamid, player, gtime. Modify it to show the matchid and player name for all goals scored by Germany. To identify German players, check for: teamid = 'GER' 정답 1 2 3 SELECT matchid, player FROM goal WHE.. 2022. 1. 11.
SQL Zoo 03 - Select from WORLD SQL Zoo 03 - Select from WORLD Database 문제 1. QL 명령 실행 결과를 관찰하여 모든 국가의 이름, 대륙 및 인구를 추출하세요. 정답 1 2 SELECT name, continent, population FROM world cs 문제 2. 인구가 최소 2억 명인 나라들의 이름을 보여 주세요. 정답 1 2 SELECT name FROM world WHERE population >= 200000000 cs 문제 3. 최소한 2억 명의 인구를 가진 나라들의 name과 GDP per capita (1인당 GDP)를 추출해보세요. 정답 1 2 3 SELECT name, gdp/population FROM world WHERE population >= 200000000 cs 문제 .. 2022. 1. 6.

반응형