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

  • Home
  • SEARCH
  • 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 6736633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:09:12+00:00 2026-05-26T11:09:12+00:00

This query takes a split second select * from tbl1 limit 0,1 This query

  • 0

This query takes a split second

select * from tbl1 limit 0,1

This query takes a second

SELECT Distinct(col2) FROM tbl2 WHERE col3 = 2

This query eats 100% cpu and takes 190 seconds duration (0s fetch) to return the result

select * from tbl1 WHERE ID IN (SELECT Distinct(col2) FROM tbl2 WHERE col3 = 2) limit 0,1

I am trying to run this query on the full data set (not just limiting it to one record)

What could be causing the performance problem, my table structures?

  • 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-26T11:09:12+00:00Added an answer on May 26, 2026 at 11:09 am

    Subqueries in MySQL are notoriously slow. You can speed this up with a join:

    SELECT A.*
    FROM
        tbl1 A
        INNER JOIN (
            SELECT DISTINCT col2
            FROM
                tbl2
            WHERE
                col3 = 2
        ) X ON X.col2 = A.ID
    LIMIT 0, 1
    

    To update tbl1:

    UPDATE
        tbl1 A
        INNER JOIN (
            SELECT DISTINCT col2
            FROM
                tbl2
            WHERE
                col3 = 2
        ) X ON X.col2 = A.ID
    SET
        A.SomeCol = 'value'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Take this query: SELECT * FROM MyTable WHERE MyColumn = 'SomeValue' ORDER BY SomeFakeQualifier.MyColumn
i got this SQL query where post_title taken from $_GET $sql = SELECT ID
This query works: item = db.GqlQuery(SELECT * FROM Item WHERE CSIN = 13)[0] although
can anybody explain me why this query takes 13 seconds: SELECT Table1.Location, Table2.SID, Table2.CID,
How to do this on Google App Engine (Python): SELECT COUNT(DISTINCT user) FROM event
I'm having trouble optimizing this query: SELECT a.id FROM a JOIN b ON a.id=b.id
Can anyone help me rewrite this query without a distinct clause? select a.rec_type ,
This query works great: var pageObject = (from op in db.ObjectPermissions join pg in
This query selects all the unique visitor sessions in a certain date range: select
I have a query that originally looks like this: select c.Id, c.Name, c.CountryCode, c.CustomerNumber,

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.