I'm trying to use a select statement to get all of the columns from a certain MySQL table except one. Is there a simple way to do this?
EDIT: There are 53 columns in this table (NOT MY DESIGN)
feedback
|
|
Actually there is a way, you need to have permissions of course for doing this ...
Replacing | |||||||||||||||
feedback
|
|
To the best of my knowledge, there isn't. You can do something like:
and manually choose the columns you want. However, if you want a lot of columns, then you might just want to do a:
In your particular case, I would suggest:
unless you only want a few columns. If you only want four columns, then:
would be fine, but if you want 50 columns, then any code that makes the query would become (too?) difficult to read. | ||||
|
feedback
|
|
Would a View work better in this case?
| ||||
|
feedback
|
|
If the column that you didn't want to select had a massive amount of data in it, and you didn't want to include it due to speed issues and you select the other columns often, I would suggest that you create a new table with the one field that you don't usually select with a key to the original table and remove the field from the original table. Join the tables when that extra field is actually required. | |||
|
feedback
|
|
You can do:
without getting column3, though perhaps you were looking for a more general solution? | |||||
feedback
|
|
53 columns? I would stick with SELECT * as Thomas suggests in that case... unless that extra column has a huge amount of data that would be undesirable to retrieve...? | |||
|
feedback
|
|
You could use DESCRIBE my_table and use the results of that to generate the SELECT statement dynamically. | |||
|
feedback
|
|
I agree that it isn't sufficient to I would create a view with the required data, then you can | |||
|
feedback
|
|
It is good practice to specify the columns that you are querying even if you query all the columns. So I would suggest you write the name of each column in the statement (excluding the one you don't want).
| |||||||||
feedback
|
|
At first I thought you could use regular expressions, but as I've been reading the MYSQL docs it seems you can't. If I were you I would use another language (such as PHP) to generate a list of columns you want to get, store it as a string and then use that to generate the SQL. | |||
|
feedback
|
|
Just do
Then drop the column in you favourite programming language: php
| |||||||
feedback
|
|
I'd like to commennt Mahomedalid's Answer, but don't have the rights to do so. This solution is not generally usable, because if there is another column having the filtered column name as a substring, this part is also filtered and the query causes an error. Example:
Observer the substring id missing from field category_id. | |||
|
feedback
|
|
If it's always the same one column, then you can create a view that doesn't have it in it. Otherwise, no I don't think so. | |||
|
feedback
|
|
While I agree with Thomas' answer (+1 ;)), I'd like to add the caveat that I'll assume the column that you don't want contains hardly any data. If it contains enormous amounts of text, xml or binary blobs, then take the time to select each column individually. Your performance will suffer otherwise. Cheers! | |||
|
feedback
|
|
You can use SQL to generate SQL if you like and evaluate the SQL it produces. This is a general solution as it extracts the column names from the information schema. Here is an example from the Unix command line. substituting MYSQL with your mysql command TABLE with the table name EXCLUDEDFIELD with excluded field name echo $(echo 'select concat("select ", group_concat(column_name) , " from TABLE") from information_schema.columns where table_name="TABLE" and column_name != "EXCLUDEDFIELD" group by "t"' | MYSQL | tail -n 1) | MYSQL You will really only need to extract the column names in this way only once to construct the column list excluded that column, and then just use the query you have constructed. So something like: column_list=$(echo 'select group_concat(column_name) from information_schema.columns where table_name="TABLE" and column_name != "EXCLUDEDFIELD" group by "t"' | MYSQL | tail -n 1) Now you can reuse the $column_list string in queries you construct. | ||||
|
feedback
|
|
Yes, though it can be high I/O depending on the table here is a workaround I found for it.
| ||||
|
feedback
|
|
in mysql definitions (manual) there is no such ... but if you have a real big numb of columns col1 ... col100 folowing can be usefull: mysql> CREATE TEMPORARY TABLE temp_tb SELECT * FROM orig_tb; mysql> ALTER TABLE temp_tb DROP col_x; mysql> SELECT * FROM temp_tb; | |||
|
feedback
|
|
I agree with the "simple" solution of listing all the columns, but this can be burdensome, and typos can cause lots of wasted time. I use a function "getTableColumns" to retrieve the names of my columns suitable for pasting into a query. Then all I need to do is to delete those I don't want.
Your result returns a comma delimited string, for example...
| |||
|
feedback
|
|
FYI and clarification: The solution that grabs from information_schema works for excluding a single column. For multiple columns it only works if those column names appear adjacent to eachother in the output from the group_concat() function. If someone wishes to exclude multiple columns that appear in different locations, this solution will not work. | |||
|
feedback
|
|
My main problem is the many columns I get when joining tables. While this is not the answer to your question (how to select all but certain columns from one table), I think it is worth mentioning that you can specify Here is an example of how this could be very useful: select users.*, phone.meta_value as phone, zipcode.meta_value as zipcode from users left join user_meta as phone on ( (users.user_id = phone.user_id) AND (phone.meta_key = 'phone') ) left join user_meta as zipcode on ( (users.user_id = zipcode.user_id) AND (zipcode.meta_key = 'zipcode') ) The result is all the columns from the users table, and two additional columns which were joined from the meta table. | |||
|
feedback
|
|
The answer posted by Mahomedalid has a small problem: Inside replace function code was replacing " My proposal:
Replacing The column removed is replaced by the string "FIELD_REMOVED" in my case this works because I was trying to safe memory. (The field I was removing is a BLOB of around 1MB) | ||||
|
feedback
|
|
This is the simplest way and it works SELECT * FROM TABLE WHERE COLUMN != 'NAME' | ||||
|
feedback
|