0
votes
2answers
37 views

Matching interests(Nearest neighbour) search in SQL

I'm trying to find users with similar set of interests, with the following schema.. USERS - ID name etc Interests - ID UID PID where ID is unique ID for Interests, UIS is user ID and PID is a ...
0
votes
0answers
189 views

Finding nearest point in SpatiaLite without GEOS

I want to find the nearest point having latitude and longitude stored as Point in SpatiaLite. I read this and it has this example: SELECT feature_name, feature_class, ST_Distance(Geometry, ...
2
votes
1answer
247 views

SQL Nearest Neighbor Query (Movie Recommendation Algorithm)

Need help making this (sort of) working query more dynamic. I have three tables myShows, TVShows and Users myShows ID (PK) User (FK to Users) Show (FK to TVShows) Would like to take this query ...
2
votes
2answers
1k views

ERROR: subquery in FROM cannot refer to other relations of same query level

I'm working with PostgreSQL 9 and I want to find the nearest neighbor inside table RP for all tuples in RQ, comparing the dates (t), but I get this error: ERROR: subquery in FROM cannot refer to ...
3
votes
1answer
562 views

Implementing a k-d tree for 'nearest neighbor' search in MYSQL?

I am designing an automated trading software for the foreign exchange market. In a MYSQL database I have years of market data at five-minute intervals. I have 4 different metrics for this data ...
1
vote
1answer
216 views

How to perform a multidimensional search for “N-nearest neighbors?”

I am designing an automated trading software for the foreign exchange market. In a MYSQL database I have years of market data at five-minute intervals. I have 5 different metrics for this data ...
2
votes
1answer
1k views

Find the nearest neighbour / latitude and longitude

I have a table (DB2 database) with city information and corresponding latitude and longitude and many other info related to the city. My requirement is: Input to my application will be latitude and ...
2
votes
2answers
467 views

How to find similar users using their interests

I am trying to create a system which would be able to find users with similar favourite movies/books/interests/etc., much like neighbours on last.fm. Users sharing the most mutual interests would have ...
8
votes
2answers
2k views

How can I extend this SQL query to find the k nearest neighbors?

I have a database full of two-dimensional data - points on a map. Each record has a field of the geometry type. What I need to be able to do is pass a point to a stored procedure which returns the k ...
3
votes
1answer
1k views

Slow Postgres Query

I'm new to Postgres and SQL. I created the following script that draws a line from a point to a projected point on the nearest line. It works fine on a small data set 5 to 10 points with the same ...
0
votes
2answers
1k views

Drawing a line in PostGIS using Nearest Neighbour Method

This is a cross post from an email I sent to the PostGIS mailing list So far in my endeavor to create a line between a point and its projected location on a line has been long but I'm almost there. ...
6
votes
3answers
4k views

SQL efficient nearest neighbour query

I'm having trouble coming up with an efficient SQL query to handle the following situation: Assume we have a table with two columns groupId : int value : float The table is huge (several million ...