728x90
๋ฐ์ํ

Source Code
์ญ์ ์ ๋ ฌํ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT NAME, DATETIME FROM ANIMAL_INS ORDER BY ANIMAL_ID DESC |
์ํ ๋๋ฌผ ์ฐพ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ANIMAL_ID,NAME FROM ANIMAL_INS WHERE INTAKE_CONDITION = "Sick" |
์ด๋ฆฐ ๋๋ฌผ ์ฐพ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ANIMAL_ID,NAME FROM ANIMAL_INS WHERE INTAKE_CONDITION != "Aged" |
๋๋ฌผ์ ์์ด๋์ ์ด๋ฆ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ANIMAL_ID,NAME FROM ANIMAL_INS |
๋ชจ๋ ๋ ์ฝ๋ ์กฐํํ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * FROM ANIMAL_INS ORDER BY ANIMAL_ID |
์ฌ๋ฌ ๊ธฐ์ค์ผ๋ก ์ ๋ ฌํ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ANIMAL_ID,NAME,DATETIME FROM ANIMAL_INS ORDER BY NAME,DATETIME DESC |
์์ n๊ฐ ๋ ์ฝ๋
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT NAME FROM ANIMAL_INS ORDER BY DATETIME LIMIT 1 |
์ต๋๊ฐ ๊ตฌํ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DATETIME FROM ANIMAL_INS ORDER BY DATETIME DESC LIMIT 1 |
์ต์๊ฐ ๊ตฌํ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DATETIME FROM ANIMAL_INS ORDER BY DATETIME LIMIT 1 |
๋๋ฌผ ์ ๊ตฌํ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT COUNT(*) FROM ANIMAL_INS |
์ค๋ณต ์ ๊ฑฐํ๊ธฐ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT COUNT(DISTINCT(NAME)) FROM ANIMAL_INS |
์ด๋ฆ์ด ์๋ ๋๋ฌผ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ANIMAL_ID FROM ANIMAL_INS WHERE NAME IS NOT NULL |
728x90
๋ฐ์ํ
'๐ Problem Solution > Programmers' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
ํ๋ก๊ทธ๋๋จธ์ค ๋ฒ ์คํธ ์จ๋ฒ Swift (0) | 2020.12.10 |
---|---|
ํ๋ก๊ทธ๋๋จธ์ค ๋คํธ์ํฌ Swift (0) | 2020.12.10 |
2019 KAKAO BLIND RECRUITMENT ํ๋ณดํค Swift (0) | 2020.12.04 |
ํ๋ก๊ทธ๋๋จธ์ค ์๊ฐ ์ฝ๋ ์ฑ๋ฆฐ์ง ์์ฆ1 ์ผ๊ฐ ๋ฌํฝ์ด Swift (0) | 2020.12.01 |
2018 KAKAO BLIND RECRUITMENT[3์ฐจ] ๋ฐฉ๊ธ๊ทธ๊ณก Swift (0) | 2020.11.29 |
๋๊ธ