Retrieve all columns except 1 in a table.

I have a table with 20 columns and I have to retrieve 19 except one.
Is there any way easier then giving
SELECT Col1,Col2,Col3,..........Col19 from table1.

Questions by Ahilan Carpenter

Showing Answers 1 - 12 of 12 Answers

mohit Goyal

  • Oct 4th, 2011
 

SELECT * [except columnA] FROM tableA

dilbagh

  • Oct 9th, 2011
 

select top 19 * from table1

  Was this answer useful?  Yes

bhanu

  • Nov 23rd, 2011
 

if we are dong select top 33* from table, we will get topmost 33 records but not the all 33 columns except 1 column in a table.

  Was this answer useful?  Yes

dan

  • Jul 30th, 2015
 

No, cant be done.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions