up vote 32 down vote favorite
8
share [g+] share [fb]

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)

link|improve this question
Except one colum... I supose you know which one should be ignored, hence INFORMATION_SCHEMA.columns is the way. – Alfabravo Feb 23 '10 at 22:09
feedback

22 Answers

up vote 41 down vote accepted

Actually there is a way, you need to have permissions of course for doing this ...

SET @sql = CONCAT('SELECT ', (SELECT REPLACE(GROUP_CONCAT(COLUMN_NAME), '<columns_to_delete>,', '') FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '<table>' AND TABLE_SCHEMA = '<database>'), ' FROM <table>');

PREPARE stmt1 FROM @sql;
EXECUTE stmt1;

Replacing <table>, <database> and <columns_to_delete>

link|improve this answer
3  
How come this one wasn't the one chosen as the RIGHT one?? Using INFORMATION_SCHEMA is the way... the metadata solves the problem! dev.mysql.com/doc/refman/5.0/en/columns-table.html – Alfabravo Feb 23 '10 at 22:08
1  
@Alfabravo Agreed—this is the actual solution, even if it's not the prettiest SQL anyone's ever seen. – Jordan Gray Apr 6 '11 at 8:05
2  
caveat: INFORMATION_SCHEMA queries have pretty poor performance, so be careful this type of query isn't in the critical path for anything. – Bill Karwin Sep 20 '11 at 21:08
Please read Jan Koritak's answer before actually using this. – Maurice Jan 26 at 8:24
feedback

To the best of my knowledge, there isn't. You can do something like:

"SELECT col1, col2, col3, col4 FROM tbl"

and manually choose the columns you want. However, if you want a lot of columns, then you might just want to do a:

"SELECT * FROM tbl" and just ignore what you don't want.

In your particular case, I would suggest:

"SELECT * FROM tbl"

unless you only want a few columns. If you only want four columns, then:

"SELECT col3, col6, col45, col 52 FROM tbl"

would be fine, but if you want 50 columns, then any code that makes the query would become (too?) difficult to read.

link|improve this answer
feedback

Would a View work better in this case?

CREATE VIEW vwTable
as  
SELECT  
    col1  
    , col2  
    , col3  
    , col..  
    , col53  
FROM table
link|improve this answer
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.

link|improve this answer
feedback

You can do:

SELECT column1, column2, column4 FROM table WHERE whatever

without getting column3, though perhaps you were looking for a more general solution?

link|improve this answer
2  
+1 to counteract the downvote. While this is a naive answer, it is perfectly correct and I think qualifies as "a simple way to do this". – Daniel Pryden Sep 3 '09 at 20:49
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...?

link|improve this answer
feedback

You could use DESCRIBE my_table and use the results of that to generate the SELECT statement dynamically.

link|improve this answer
feedback

I agree that it isn't sufficient to Select *, if that one you don't need, as mentioned elsewhere, is a BLOB, you don't want to have that overhead creep in.

I would create a view with the required data, then you can Select * in comfort --if the database software supports them. Else, put the huge data in another table.

link|improve this answer
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).

SELECT
    col1
    , col2
    , col3
    , col..
    , col53

FROM table
link|improve this answer
why is that "good practice"? – user13276 Feb 22 '09 at 3:12
It acts like a contract with the code and when looking at the query, you know exactly what data you can extract from the it without looking at the schema of the table. – GoodEnough Feb 23 '09 at 14:54
3  
@kodecraft: It's good practice for the same reason that it's good practice to alway return the same type from a function (even if you work in a language where that's not enforced). Basically just the Principle of Least Surprise. – Daniel Pryden Sep 3 '09 at 20:47
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.

link|improve this answer
feedback

Just do

SELECT * FROM table WHERE whatever

Then drop the column in you favourite programming language: php

while (($data = mysql_fetch_array($result, MYSQL_ASSOC)) !== FALSE) {
   unset($data["id"]);
   foreach ($data as $k => $v) { 
      echo"$v,";
   }      
}
link|improve this answer
is this effective – gowri Feb 25 '11 at 4:37
Unless the column you want to exclude is a huge BLOB or something. – Bill Karwin Sep 20 '11 at 21:09
This is bad if you're trying to avoid the wasted data. – Kristopher Ives Sep 25 '11 at 20:13
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:

mysql> show fields from products;
+-------------+---------------+------+-----+---------+----------------+
| Field       | Type          | Null | Key | Default | Extra          |
+-------------+---------------+------+-----+---------+----------------+
| id          | int(11)       | NO   | PRI | NULL    | auto_increment |
| category_id | int(11)       | YES  |     | NULL    |                |
| owner_id    | int(11)       | YES  |     | NULL    |                |
+-------------+---------------+------+-----+---------+----------------+
11 rows in set (0.00 sec)


mysql> SET @sql = CONCAT('SELECT ', (SELECT REPLACE(GROUP_CONCAT(COLUMN_NAME), 'id,', '') FROM  INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'products' AND TABLE_SCHEMA = 'doplacu'), ' FROM     products');
Query OK, 0 rows affected (0.00 sec)

mysql> select @sql;
+---------------------------------------------------------------------------------------------------------+
| @sql                                                                                                    |
+---------------------------------------------------------------------------------------------------------+
| SELECT category_owner_id FROM products |
+---------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Observer the substring id missing from field category_id.

link|improve this answer
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.

link|improve this answer
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!

link|improve this answer
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.

link|improve this answer
feedback

Yes, though it can be high I/O depending on the table here is a workaround I found for it.

Select *
into #temp
from table

alter table #temp drop column column_name

Select *
from #temp
link|improve this answer
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;

link|improve this answer
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.

CREATE FUNCTION `getTableColumns`(tablename varchar(100)) 
          RETURNS varchar(5000) CHARSET latin1
BEGIN
  DECLARE done INT DEFAULT 0;
  DECLARE res  VARCHAR(5000) DEFAULT "";

  DECLARE col  VARCHAR(200);
  DECLARE cur1 CURSOR FOR 
    select COLUMN_NAME from information_schema.columns 
    where TABLE_NAME=@table AND TABLE_SCHEMA="yourdatabase" ORDER BY ORDINAL_POSITION;
  DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1;
  OPEN cur1;
  REPEAT
       FETCH cur1 INTO col;
       IF NOT done THEN 
          set res = CONCAT(res,IF(LENGTH(res)>0,",",""),col);
       END IF;
    UNTIL done END REPEAT;
  CLOSE cur1;
  RETURN res;

Your result returns a comma delimited string, for example...

col1,col2,col3,col4,...col53

link|improve this answer
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.

link|improve this answer
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 table. to get all columns from a particular table, instead of just specifying .

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.

link|improve this answer
feedback

The answer posted by Mahomedalid has a small problem:

Inside replace function code was replacing "<columns_to_delete>," by "", this replacement has a problem if the field to replace is the last one in the concat string due to the last one doesn't have the char comma "," and is not removed from the string.

My proposal:

SET @sql = CONCAT('SELECT ', (SELECT REPLACE(GROUP_CONCAT(COLUMN_NAME),
                  '<columns_to_delete>', '\'FIELD_REMOVED\'')
           FROM INFORMATION_SCHEMA.COLUMNS
           WHERE TABLE_NAME = '<table>'
             AND TABLE_SCHEMA = '<database>'), ' FROM <table>');

Replacing <table>, <database> and `

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)

link|improve this answer
feedback

This is the simplest way and it works

SELECT * FROM TABLE WHERE COLUMN != 'NAME'

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.