Julia conducted a 15 days of learning SQL contest. The start date of the contest was March 01, 2016 and the end date was March 15, 2016. Write a query to print total number of unique hackers who made at least 1 submission each day (starting on the first day of the contest), and find the hacker_id and name of the hacker who made maximum number of submissions each day. If more than one such hacker..
Print Prime Numbers SET @i = 2; SET @isPrime = 0; SET @result = ''; DELIMITER $$ CREATE PROCEDURE PrintPrime(IN num INT) BEGIN WHILE @i 1 DO IF @i % @j = 0 THEN SET @isPrime = 0; END IF; SET @j = @j - 1; END WHILE; IF @isPrime = 1 THEN SET @result = CONCAT(@result, @i, '&'); END IF; SET @i = @i + 1; END WHILE ; SET @result = SUBSTR(@result, ..
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). MS-SQL에서는 무지 쉽다. DECLARE @NUM INT = 20 WHILE @NUM > 0 BEGIN SELECT REPLICATE('* ',@NUM) SET @NUM = @NUM - 1 END MYSQL은 뭔지 몰라서 한참 찾았다. LPAD 또는 RPAD를 사용하면 되는데 중요한 것은 2번째 인자이다. REPLICATE는 특별하게 생각할 필요없이 반복한 숫자를 넣어주면 되지만 LPAD/RPAD는 최종 문자열의 길이를 정해줘야 한다. 즉, '*'만 찍어야 하는 것이..
- Total
- Today
- Yesterday
- 매매일지
- hackerrank
- Tableau
- 에코캡
- MSSQL
- list
- Weather Observation Station
- 분석탭
- 넥스트BT
- string
- HK이노엔
- 리비안
- 넷플릭스
- SQL Server
- 미중무역전쟁
- DATABASE
- 코로나19
- MS SQL Server
- 해커랭크
- insert
- 대원화성
- 몰누피라비르
- python
- TSQL
- mysql
- 경구치료제
- 동국알앤에스
- tensorflow
- 테슬라
- python3
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |