Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wildcards in column name for MySQL

Tags:

python

sql

mysql

I am trying to select multiple columns, but not all of the columns, from the database. All of the columns I want to select are going to start with "word".

So in pseudocode I'd like to do this:

SELECT "word%" from searchterms where onstate = 1;

More or less. I am not finding any documentation on how to do this - is it possible in MySQL? Basically, I am trying to store a list of words in a single row, with an identifier, and I want to associate all of the words with that identifier when I pull the records. All of the words are going to be joined as a string and passed to another function in an array/dictionary with their identifier.

I am trying to make as FEW database calls as possible to keep speedy code.

Ok, here's another question for you guys:

There are going to be a variable number of columns with the name "word" in them. Would it be faster to do a separate database call for each row, 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?

like image 485
Steven Matthews Avatar asked Jul 13 '12 08:07

Steven Matthews


People also ask

Can we use wildcard in MySQL?

MySQL WildcardsA wildcard character is used to substitute one or more characters in a string. Wildcard characters are used with the LIKE operator. The LIKE operator is used in a WHERE clause to search for a specified pattern in a column.

What is the wildcard character that selects all columns from a table?

* is the wildcard character used to select all available columns in a table. When used as a substitute for explicit column names, it returns all columns in all tables that a query is selecting FROM .

How do I get a list of column names in MySQL?

You can list a table's columns with the mysqlshow db_name tbl_name command.


Video Answer


2 Answers

No, SQL doesn't provide you with any syntax to do such a select.

What you can do is ask MySQL for a list of column names first, then generate the SQL query from that information.

SELECT column_name
FROM information_schema.columns
WHERE table_name = 'your_table'
    AND column_name LIKE 'word%'

let's you select the column names. Then you can do, in Python:

"SELECT * FROM your_table WHERE " + ' '.join(['%s = 1' % name for name in columns])

Instead of using string concatenation, I would recommend using SQLAlchemy instead to do the SQL generating for you.

However, if all you are doing is limit the number of columns there is no need to do a dynamic query like this at all. The hard work for the database is selecting the rows; it makes little difference to send you 5 columns out of 10, or all 10.

In that case just use a "SELECT * FROM ..." and use Python to pick out the columns from the result set.

like image 81
Martijn Pieters Avatar answered Nov 15 '22 18:11

Martijn Pieters


No, you cannot dynamically produce the list of columns to be selected. It will have to be hardcoded in your final query.

Your current query would produce a result set with one column and the value of that column would be the string "word%" in all rows that satisfy the condition.

like image 29
Jon Avatar answered Nov 15 '22 16:11

Jon