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 | 31 |
Tags
- 편향-분산 교환
- programmers
- CSS
- HTML
- early stopping
- hackerrank
- L2정규화
- branch
- 깃헙협업
- PYTHON
- elastic net
- coding
- merge
- Git
- leetcode
- 선형 모형
- 코딩공부
- conflict
- 교차 엔트로피
- 온라인협업
- sql
- L1정규화
- full request
- AWS
- 버전충돌
- 클라우드컴퓨팅
- github
- window function
- mysql
- RLIKE
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