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

We all know that to select all columns from a table, we can use

SELECT * FROM tableA

Is there a way to exclude column(s) from a table without specifying all the columns?

SELECT * [except columnA] FROM tableA

The only way that I know is to manually specify all the columns and exclude the unwanted column. This is really time consuming so I'm looking for ways to save time and effort on this, as well as future maintenance should the table has more/less columns.

thanks!

link|improve this question
feedback

20 Answers

No.

Maintenance-light best practice is to specify only the required columns.

At least 2 reasons:

  • This makes your contract between client and database stable. Same data, every time
  • Performance, covering indexes

Edit (July 2011):

If you drag from Object Explorer Columns node for a table it puts a CSV list of columns in the Query Window for you which achieves one of your goals

link|improve this answer
4  
Kudos for the tip about dragging CSV list of columns. WOW - what a time saver! – Ducain Jul 29 '11 at 21:38
I agree @Ducain. That will save me a lot of time! – guillegr123 Nov 15 '11 at 20:25
feedback

I agree with everyone... but if I was going to do something like this I might do it this way:

/* Get the data into a temp table */
SELECT * INTO #TempTable
FROM YourTable
/* Drop the cloumns that are not needed */
ALTER TABLE #TempTable
DROP COLUMN ColumnToDrop
/* Get results and drop temp table */
SELECT * FROM #TempTable
DROP TABLE #TempTable
link|improve this answer
1  
Awesome! (Wish I could give you +10 for that one) – B Tyler Aug 4 '11 at 16:07
aplouds!!!12345 – Yola Nov 3 '11 at 13:31
2  
Inneficient...but very creative :) +1 – guillegr123 Nov 15 '11 at 20:26
feedback

Like the others have said there is no way to do this, but if you're using Sql Server a trick that I use is to change the output to comma separated, then do

select top 1 * from table

and cut the whole list of columns from the output window. Then you can choose which columns you want without having to type them all in.

link|improve this answer
See my tip about dragging from SSMS – gbn Nov 15 '11 at 20:38
feedback

Basically, you cannot do what you would like - but you can get the right tools to help you out making things a bit easier.

If you look at Red-Gate's SQL Prompt, you can type "SELECT * FROM MyTable", and then move the cursor back after the "*", and hit <TAB> to expand the list of fields, and remove those few fields you don't need.

It's not a perfect solution - but a darn good one! :-) Too bad MS SQL Server Management Studio's Intellisense still isn't intelligent enough to offer this feature.......

Marc

link|improve this answer
feedback

No there isn't. Sorry.

link|improve this answer
feedback

You could create a view that has the columns you wish to select, then you can just select * from the view...

link|improve this answer
feedback

Well, it is a common best practice to specify which columns you want, instead of just specifying *. So you should just state which fields you want your select to return.

link|improve this answer
feedback

In SQL Management Studio you can expand the columns in Object Explorer, then drag the Columns tree item into a query window to get a comma separated list of columns.

link|improve this answer
feedback

The (truly) relational database language Tutorial D supports such shorthand using ALL BUT. However, nothing similar has been introduced into the (not truly relational) SQL language.

link|improve this answer
feedback

In summary you cannot do it, but I disagree with all of the comment above, there "are" scenarios where you can legitimately use a * When you create a nested query in order to select a specific range out of a whole list (such as paging) why in the world would want to specify each column on the outer select statement when you have done it in the inner?

link|improve this answer
feedback

The automated way to do this in SQL (MS SQL) is:

declare @cols varchar(max), @query varchar(max)
SELECT  @cols = STUFF
    (
        ( 
            SELECT DISTINCT '], [' + name
            FROM sys.columns
            where object_id = (
                select top 1 object_id from sys.objects
                where name = 'MyTable'
            )
            and name not in ('ColumnIDontWant1', 'ColumnIDontWant2')
            FOR XML PATH('')
        ), 1, 2, ''
    ) + ']'

select @query = 'select ' + @cols + ' from MyTable where'  
exec (@query)
link|improve this answer
feedback

no there is no way to do this. maybe you can create custom views if that's feasible in your situation

EDIT May be if your DB supports execution of dynamic sql u could write an SP and pass the columns u don't want to see to it and let it create the query dynamically and return the result to you. I think this is doable in SQL Server atleast

link|improve this answer
2  
It is doable but I would fire the person doing that. – Lieven Apr 8 '09 at 9:29
:D lolzzzzzzz. Yes u definitely shud do that. – Ali Kazmi Apr 8 '09 at 9:42
feedback

I do not know of any database that supports this (SQL Server, MySQL, Oracle, PostgreSQL). It is definitely not part of the SQL standards so I think you have to specify only the columns you want.

You could of course build your SQL statement dynamically and have the server execute it. But this opens up the possibility for SQL injection..

link|improve this answer
feedback

No, there isn't any way to do that, and there is no good reason to do it.

When selecting data you should never use *, you should always specify the fields that you want. The reason is that you want the query to work the same even if you later add another field to the table. Also you specify the order of the fields in the result so that rearranging fields in the table doesn't change the result.

The same would of course apply to * except if it was possible to do.

link|improve this answer
Why the downvote? If you don't explain what it is that you don't like, it's pretty pointless. – Guffa May 6 '10 at 21:46
I think in most cases if you're using * you DO want to return every column (even the new ones). – Rob Jul 7 '11 at 3:07
@Rob: That is definitely not anything I would reccomend in production code. You would have to make the application dynamic so that it could handle the extra information for there to be any point to get it. Getting all fields could easily make the query stop working if you add fields so that they no longer fit in the database buffer. – Guffa Jul 7 '11 at 6:02
feedback

Depending on the size of your table, you can export it into Excel and transpose it to have a new table in which the columns of original table will be the rows in new table. Then take it back into your SQL database and select the rows according to the condition and insert them into another new table. Finally export this newer table to Excel and do another transpose to have your desired table and take it back to your SQL database.

Not sure if tranpose can be done within SQL database, if yes then it will be even easier.

Jeff

link|improve this answer
feedback

I think the real reason it's not necessary is to filter out an element in your second language (if you're using one). If you're mixing sql and something else, then you can use select * and then filter out the one result that you don't want from within the other language. For example, create a php array out of the results, and then unset the appropriate element of the array, e.g. unset($array['password']);

link|improve this answer
feedback

Yes it's possible (but not recommended).

CREATE TABLE contact (contactid int, name varchar(100), dob datetime)
INSERT INTO contact SELECT 1, 'Joe', '1974-01-01'

DECLARE @columns varchar(8000)

SELECT @columns = ISNULL(@columns + ', ','') + QUOTENAME(column_name)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'contact' AND COLUMN_NAME <> 'dob'
ORDER BY ORDINAL_POSITION

EXEC ('SELECT ' + @columns + ' FROM contact')
link|improve this answer
feedback

Right click table in Object Explorer, Select top 1000 rows

It'll list all columns and not *. Then remove the unwanted column(s). Should be much faster than typing it yourself.

Then when you feel this is a bit too much work, get Red Gate's SQL Prompt, and type ssf from tbl, go to the * and click tab again.

link|improve this answer
feedback

Wouldn't it be simpler to do this:

sp_help <table_name>

-Click on the 'Column_name' column> Copy> Paste (creates a vertical list) into a New Query window and just type commas in front of each column value... comment out the columns you don't want... far less typing than any code offered here and still manageable.

link|improve this answer
feedback

If you are using MS SQL Server Management Studio then do as follows:

  1. type in your desired tables name and select it
  2. press Alt+F1
  3. o/p shows the columns in table.
  4. Select the desired columns
  5. Copy & paste those in your select query
  6. Fire the query.

Enjoy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown