컴퓨터과학/Algorithm (21) 썸네일형 리스트형 [SQL] [Codewars] 7Kyu - Hello SQL World! Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 문제 Hello SQL! Return a table with a single column named Greeting with the phrase 'hello world!' 코드 SELECT 'hello world!' as "Greeting" 설명 SQL에서 문자열을 출력하는데 SELECT를 사용할 수 있다. 출력할 문자열은 작은따옴표로 묶어줘야 한다. 또한, SQL에서 .. 이전 1 2 3 4 5 다음