kyohoonsim / kusf-data-2023-1

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

Quiz7. 서브쿼리 #8

Open kyohoonsim opened 1 year ago

kyohoonsim commented 1 year ago

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

echoe1009 commented 1 year ago

7-1. SELECT * FROM student WHERE age >= (SELECT AVG(age) FROM student); image

expediore commented 1 year ago

7-1. SELECT * FROM student WHERE age > (SELECT AVG(age) FROM student); image

hungrywoo commented 1 year ago

7-1. SELECT * FROM student WHERE age > (SELECT AVG(age) FROM student); image

JJungEunnn commented 1 year ago

7-1

image
xinnazim commented 1 year ago

7-1.

SELECT * FROM student WHERE age > (SELECT AVG(age) FROM student);

DBeaver 23 0 5 - _52 79 134 175 2_ Script 2023-05-31 오후 8_53_14

dhEhdod commented 1 year ago

7-1. SELECT * FROM student WHERE age > (SELECT AVG(age) FROM student); image

indianaPoly commented 1 year ago

7-1. select * from student where age > (select avg(age) from student);

스크린샷 2023-05-31 오후 8 53 33
Y0nghwan commented 1 year ago

7-1

SELECT * FROM student WHERE age > (SELECT AVG(age) FROM student); image

last0331 commented 1 year ago

7-1. SELECT

quiz 7

KUSFTWOO commented 1 year ago

SELECT * FROM student WHERE age >= (SELECT AVG(age) FROM student); 퀴즈 7-1 캡쳐

jjjjjjye commented 1 year ago

7-1 SELECT * FROM student WHERE age > (SELECT AVG(age) FROM student);

7-1
aosdbfc commented 1 year ago

SELECT name FROM student WHERE age > (SELECT AVG(age) FROM student);

image

WooJHo commented 1 year ago

7-1 select * FROM student where age > (SELECT AVG(age) from student); image

yibeeeen commented 1 year ago

7-1 SELECT * FROM student WHERE age > (SELECT AVG(age) from student);

스크린샷 2023-05-31 오후 8 55 47
monimanimo commented 1 year ago

7-1 select * from student where age > (select avg(age) from student); image

echoe1009 commented 1 year ago

7-1. SELECT * FROM student WHERE age > (SELECT AVG(age) FROM student); image

BAEKDONGSEOK commented 1 year ago

7-1 image