You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cat tests.sql
ATTACH DATABASE 'address.db' AS 'address';
ATTACH DATABASE 'street.db' AS 'street';
SELECT address.*
FROM street.rtree
JOIN street.names ON street.names.id = street.rtree.id
JOIN address ON address.id = street.rtree.id
WHERE (
street.rtree.minX<=13.401955235749485 AND street.rtree.maxX>=13.401955235749485 AND
street.rtree.minY<=52.50963118805493 AND street.rtree.maxY>=52.50963118805493
)
AND ( (street.names.name='beuthstraße') )
ORDER BY address.housenumber ASC
LIMIT 100;
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: