Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6933021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:46:44+00:00 2026-05-27T11:46:44+00:00

I have a queries like below. Can these be optimized or can someone suggest

  • 0

I have a queries like below. Can these be optimized or can someone suggest a how to index?

SELECT  t1.`Geo ID`, 
        t1.`Sub Unit Geo ID`, 
        t1.`Sub Unit SW ID`, 
        t1.`Building No`, 
        t1.`Building Name`, 
        t1.Road, 
        t2.ID `Matching NEW_ID`, 
        t2.Sub, 
        t2.SUB_BUILDING_NAME, 
        t2.BUILDING_NAME,
        t2.BUILDING_NUMBER, 
        t2.THOROUGHFARE, 
        t2.E - t1.Easting `East Difference`, 
        t2.N - t1.Northing `North Difference` 
FROM    upcdata t1 JOIN 
        newer t2    ON  (t2.E * 1000) BETWEEN t1.Easting - 25000 AND t1.Easting + 25000 
                    AND (t2.N * 1000) BETWEEN t1.Northing - 25000 AND t1.Northing + 25000 
                    AND t1.Road = t2.THOROUGHFARE 
                    AND t1.`Building Name` = t2.BUILDING_NAME 
                    AND t1.`Building Name` <> ""
ORDER BY    t1.`Geo ID`
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T11:46:44+00:00Added an answer on May 27, 2026 at 11:46 am

    Indexes aren’t used for calculated values, but you can alter your query so solve that!
    Change your between to put the multiplication on the values:

    ....
    join newer t2
        ON t2.E BETWEEN (t1.Easting - 25000)/1000 AND (t1.Easting + 25000)/1000
        AND t2.N BETWEEN (t1.Northing - 25000)/1000 AND (t1.Northing + 25000)/1000
    ....
    

    The comparison is mathematically identical, but it means the between has 2 fixed values to look up on, rather than having to multiply the t2 values for every row and not use an index because of it.

    Even without indexes, just avoiding millions of computations will make it much faster

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a DataTable that queries out something like below usergroupid...userid......username 1.............1...........John 1.............2...........Lisa 2.............3...........Nathan
I have a lot of SQL queries like this: SELECT o.Id, o.attrib1, o.attrib2 FROM
I have two mysql queries: $sql = SELECT * FROM content WHERE threadName LIKE
We let users create ad-hoc queries in our website. We would like to have
I have to queries: select id, name, num from pending id, name, num 1,
I have two queries, as following: SELECT SQL_CALC_FOUND_ROWS Id, Name FROM my_table WHERE Name
i have some queries which group datasets and count them, e.g. SELECT COUNT(*) FROM
I have 2 queries. First: SELECT * FROM `table` WHERE col='xyz' LIMIT 100 //Time
I have a simple query as listed below SELECT id, name, email FROM users
I have created a simple layout with Html and CSS which is like below

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.