DotNetGnat
Programmer
Guys,
I have the following tables shown below in the simplest possible format...
The data here is only shown as sample and may not be correct...I want to find the data outliers in the Original Routes...There are multiple routes that form a original route...may be I need to find mean and standard deviation for the data set....but any ways I want the following result...
Any suggestions...
-DNG
I have the following tables shown below in the simplest possible format...
Code:
Table Name -> Route
RouteId | Elevation
__________________________
1 | 200.25
1 | 200.30
1 | 200.27
2 | 100.92
2 | 100.85
3 | 300.89
4 | 200.23
Code:
Table Name -> RouteNameJoin
OrgRouteId | RouteId
_________________________________
1000 | 1
1000 | 4
2000 | 2
2000 | 3
The data here is only shown as sample and may not be correct...I want to find the data outliers in the Original Routes...There are multiple routes that form a original route...may be I need to find mean and standard deviation for the data set....but any ways I want the following result...
Code:
OriginalRouteId | RouteId | Elevation
______________________________________
2000 | 3 | 300.89
Any suggestions...
-DNG