Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- CSS
- 클라우드컴퓨팅
- conflict
- 선형 모형
- branch
- L1정규화
- elastic net
- 온라인협업
- github
- 깃헙협업
- AWS
- 교차 엔트로피
- mysql
- 코딩공부
- sql
- merge
- early stopping
- Git
- 버전충돌
- hackerrank
- leetcode
- RLIKE
- coding
- full request
- window function
- programmers
- 편향-분산 교환
- PYTHON
- HTML
- L2정규화
Archives
- Today
- Total
Im between cherry
Hackerrank | MySQL | Draw The Triangle 2 본문
Draw The Triangle 2
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).
SET @num = 0;
SELECT REPEAT('* ', @num := @num+1)
FROM information_schema.tables
LIMIT 20
SET @NUM:= 0;
SELECT REPEAT('* ', @NUM := @NUM + 1)
FROM information_schema.tables
LIMIT 20;
'데이터분석 > practice_query' 카테고리의 다른 글
Hackerrank | MySQL | Type of Triangle (0) | 2020.08.29 |
---|---|
Hackerrank | MySQL | Symmetric Pairs (0) | 2020.08.29 |
Hackerrank | MySQL | Draw The Triangle 1 (0) | 2020.08.29 |
Hackerrank | MySQL | Average Population of Each Continent (0) | 2020.08.29 |
Hackerrank | MySQL | African Cities (0) | 2020.08.29 |
Comments