Posted By:
shobana_nandakumar
Posted On:
Friday, February 4, 2011 06:31 AM
Trajectory table OBJID PLACE 7 H 8 Q 9 W 10 A 7 H 8 A 1 S 2 D 4 G 7 B 3 K 7 H 3 I 7 C i have trajectory table as shown in above. I want a spatio-temporal query using JDBC-SQL to retrieve results. 1. " Find all OBJIDs that move from place H to place B" 2. "Find all usertrajectories that move from place H to place B" here for example in this table objid 7 moves from H to B, hence the result should be .
More>>
Trajectory table
OBJID PLACE
7 H
8 Q
9 W
10 A
7 H
8 A
1 S
2 D
4 G
7 B
3 K
7 H
3 I
7 C
i have trajectory table as shown in above. I want a spatio-temporal query using JDBC-SQL to retrieve results.
1. " Find all OBJIDs that move from place H to place B"
2. "Find all usertrajectories that move from place H to place B"
here for example in this table objid 7 moves from H to B, hence the result should be .
output
query1
objids : 7
query2
7 trajectory is HHBHC
I want a SQL query for this.
<<Less