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 8233111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T18:01:29+00:00 2026-06-07T18:01:29+00:00

Related to this question: Wildcards in column name for MySQL Basically, there are going

  • 0

Related to this question:

Wildcards in column name for MySQL

Basically, there are going to be a variable number of columns with the name “word” in them.

What I want to know is, would it be faster to do a separate database call for each row (via getting the column information from the information schema), with a generated Python query per row, or would it be faster to simply SELECT *, and only use the columns I needed? Is it possible to say SELECT * NOT XYZ? As far as I can tell, no, there is no way to specifically exclude columns.

There aren’t going to be many different rows at first – only three. But there’s the potential for infinite rows in this. It’s basically dependent on how many different types of search queries we want to put on our website. Our whole scalability is based around expanding the number of rows.

  • 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-06-07T18:01:30+00:00Added an answer on June 7, 2026 at 6:01 pm

    If all you are doing is limiting the number of columns returned there is no need to do a dynamic query. The hard work for the database is in selecting the rows matching your WHERE clause; it makes little difference to send you 5 columns out of 10, or all 10.

    Just use a “SELECT * FROM …” and use Python to pick out the columns from the result set. You’ll use just one query to the database, so MySQL only has to work once, then filter out your columns:

    cursor.execute('SELECT * FROM ...')
    cols = [i for i, col in enumerate(cursor.description) if col[0].startswith('word')]
    for row in cursor:
        columns = [row[c] for c in cols]
    

    You may have to use for row in cursor.fetchall() instead depending on your MySQL python module.

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

Sidebar

Related Questions

related to this question my script basically runs fine but sometimes it stop responding
I know there are many queries related to this question but my problem is
This question is related to this previous question: PDO, MySQL - How do I
Related to this question , is the idea of a default servlet that serves
Note: this question is related to this one , but two years is a
This question is directly related to this SO question I posed about 15 minutes
This question is related to this SO post Rather than using a recursive CTE
This question is related to this , hopefully better phrased. I would like to
This question is related to this one: Best way to store product colors in
This is related to this question but with a different take. In Ubuntu, I

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.