"HR-SQL Revising the Select Query I"의 두 판 사이의 차이

잔글 (Jmnote님이 Revising the Select Query I 문서를 넘겨주기를 만들지 않고 HR-SQL Revising the Select Query I 문서로 이동했습니다)
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(다른 사용자 한 명의 중간 판 9개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;HR-SQL Revising the Select Query I
;HR-SQL Revising the Select Query I
* https://www.hackerrank.com/challenges/revising-the-select-query/problem


<source lang='sql'>
{{HR-SQL 헤더}}
{{HR-SQL Basic Select}}
|}
 
==DB2==
<syntaxhighlight lang='sql'>
SELECT * FROM CITY
SELECT * FROM CITY
WHERE COUNTRYCODE='USA' AND population>100000;
WHERE COUNTRYCODE='USA' AND population>100000;
</source>
</syntaxhighlight>


[[분류: HR-SQL]]
==MS SQL==
<syntaxhighlight lang='sql'>
SELECT * FROM CITY
WHERE COUNTRYCODE='USA' AND population>100000;
</syntaxhighlight>
 
==MySQL==
<syntaxhighlight lang='sql'>
SELECT * FROM CITY
WHERE COUNTRYCODE='USA' AND population>100000;
</syntaxhighlight>
 
==Oracle==
<syntaxhighlight lang='sql'>
SELECT * FROM CITY
WHERE COUNTRYCODE='USA' AND population>100000;
</syntaxhighlight>

2021년 7월 31일 (토) 10:34 기준 최신판

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}