Oneulog

· SQL/MySQL
https://www.hackerrank.com/challenges/draw-the-triangle-2/problem?isFullScreen=true 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). Code SET @NUMBER = 0; SELECT REPEAT('* ', @NUMBER := @NUMBER + 1) FROM INFORMATION_..
· SQL/MySQL
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). Code SET @NUMBER = 21; SELECT REPEAT('* ',@NUMBER := @NUMBER - 1) FROM INFORMATION_..
· SQL/MySQL
https://www.hackerrank.com/challenges/weather-observation-station-19/problem?isFullScreen=true Weather Observation Station 19 | HackerRank Query the Euclidean Distance between two points and round to 4 decimal digits. www.hackerrank.com 문제 Consider P1(a, c) and P2(b, d) to be two points on a 2D plane where (a, b) are the respective minimum and maximum values of Northern Latitude (LAT_N) and (c, ..
· SQL/MySQL
https://www.hackerrank.com/challenges/weather-observation-station-18/problem?isFullScreen=true Weather Observation Station 18 | HackerRank Query the Manhattan Distance between two points, round or truncate to 4 decimal digits. www.hackerrank.com 문제 Consider P1(a, b) and P2(c, d) to be two points on a 2D plane. a happens to equal the minimum value in Northern Latitude (LAT_N in STATION). b happen..
· SQL/MySQL
https://www.hackerrank.com/challenges/weather-observation-station-17/problem?isFullScreen=true Weather Observation Station 17 | HackerRank Query the Western Longitude for the smallest value of the Northern Latitudes greater than 38.7780 in STATION and round to 4 decimal places. www.hackerrank.com 문제 Query the Western Longitude (LONG_W)where the smallest Northern Latitude (LAT_N) in STATION is gr..
· SQL/MySQL
https://www.hackerrank.com/challenges/weather-observation-station-16/problem?isFullScreen=true Weather Observation Station 16 | HackerRank Query the smallest of STATION's Northern Latitudes that is greater than 38.7780, and round to 4 decimal places www.hackerrank.com 문제 Query the smallest Northern Latitude (LAT_N) from STATION that is greater than . Round your answer to decimal places. Input Fo..
· SQL/MySQL
https://www.hackerrank.com/challenges/weather-observation-station-15/problem?isFullScreen=true Weather Observation Station 15 | HackerRank Query the Western Longitude for the largest Northern Latitude under 137.2345, rounded to 4 decimal places. www.hackerrank.com 문제 Query the Western Longitude (LONG_W) for the largest Northern Latitude (LAT_N) in STATION that is less than 137.2345. Round your a..
· SQL/MySQL
https://www.hackerrank.com/challenges/weather-observation-station-14/problem?isFullScreen=true Weather Observation Station 14 | HackerRank Query the greatest value of the Northern Latitudes from STATION that are under 137.2345 and truncated to 4 decimal places. www.hackerrank.com 문제 Query the greatest value of the Northern Latitudes (LAT_N) from STATION that is less than 137.2345. Truncate your ..
NLP Developer
'SQL/MySQL' 카테고리의 글 목록 (2 Page)