728x90
문제
P(R) represents a pattern drawn by Julia in R rows. The following pattern represents P(5):
* * * * *
* * * *
* * *
* *
*
Write a query to print the pattern P(20).
https://www.hackerrank.com/challenges/draw-the-triangle-1/problem?isFullScreen=true
문제 풀이
SET @star := 21;
SELECT REPEAT('* ', @star := @star -1)
FROM information_schema.tables
LIMIT 20;
SQL을 독학하시는 분들에게 도움이 되길 바라며,
혹 더 좋은 방법이 있거나 오류가 있다면 편하게 말씀 부탁드립니다.
728x90