일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- airflow 설치
- SUM
- 전처리
- matplotlib
- hackerrank
- 파이썬
- 프로그래머스
- MySQL
- Limit
- PostgreSQL
- 데이터분석
- pandas
- TRUNCATE
- SQLite
- Round
- SQL
- Oracle
- 데이터시각화
- not in
- having
- 결측값
- 다중 JOIN
- seaborn
- GROUPBY
- join
- mysql :=
- 데이터리안 웨비나
- solvesql
- 그로스해킹
- 머신러닝
- Today
- Total
목록mysql := (2)
Milky's note
https://www.hackerrank.com/challenges/draw-the-triangle-2/problem?isFullScreen=true&h_r=next-challenge&h_v=zen Draw The Triangle 2 | HackerRank Draw the triangle pattern using asterisks. www.hackerrank.com [문제] 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). [답] - mysql set @star=0;..
https://www.hackerrank.com/challenges/draw-the-triangle-1/problem?isFullScreen=true Draw The Triangle 1 | HackerRank Draw the triangle pattern using asterisks. www.hackerrank.com [문제] 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). [답] - mysql set @star=21; select repeat('* ', @star..