-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06.AG14-WeatherObservationStation17.sql
66 lines (50 loc) · 1.26 KB
/
06.AG14-WeatherObservationStation17.sql
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
Weather Observation Station 17
Query the Western Longitude (LONG_W)where the smallest Northern Latitude (LAT_N) in STATION is greater than 38.7780.
Round your answer to 4 decimal places.
Input Format
The STATION table is described as follows:
+--------+--------------+
| FILEDS | TYPE |
+--------+--------------+
| ID | NUMBER |
| CITY | VARCHAR2(21) |
| STATE | VARCHAR2(2) |
| LAT_N | NUMBER |
| LONG_W | NUMBER |
+--------+--------------+
where LAT_N is the northern latitude and LONG_W is the western longitude.
*/
use hackerrank;
GO
raiserror('Now at aggregation.proc_14wos17 creation ....',0,1)
GO
CREATE or ALTER PROCEDURE aggregation.proc_14wos17(@OutParams float OUT)
AS
SELECT
@OutParams = ROUND(long_w, 4)
FROM
aggregation.STATION
WHERE
lat_n = (
SELECT
MIN(lat_n)
FROM
aggregation.STATION
WHERE
lat_n > 38.7780
);
GO
raiserror('Now at AggregationTestClass.test_14wos17 creation ....',0,1)
GO
CREATE or ALTER PROCEDURE AggregationTestClass.test_14wos17
AS
BEGIN
DECLARE @expected float;
DECLARE @actual float;
exec aggregation.proc_14wos17 @actual OUT
SET @expected = 70.1378;
EXEC tSQLt.assertEquals @expected, @actual;
END;
GO
--exec tSQLt.Run 'AggregationTestClass.[test_14wos17]';