| Author |
Select Particular Column values in sql without know the column name
|
prakasham selamban
Greenhorn
Joined: Apr 16, 2009
Posts: 15
|
|
|
I want to get particular column values in sql table.For example if table has 10 columns i want to select the values of 4 to 10 column values. Here i dont know the column names because all columns are generated at a run time. i need help as soon as possible. I have searched in lot but i could not find the sql query.
|
prakasham
|
 |
Charbel Keyrouz
Ranch Hand
Joined: Jun 10, 2005
Posts: 46
|
|
After you execute your query and in the rs.next loop do the following:
Instead of calling the fieldname you can get the value by index of the column.
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9940
|
|
|
There also should be a way to query for the column names in your code. It would depend on what api you are using to connect/run against the DB.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
prakasham selamban
Greenhorn
Joined: Apr 16, 2009
Posts: 15
|
|
Thanks for your reply.
I want the sql query to select records
|
 |
Charbel Keyrouz
Ranch Hand
Joined: Jun 10, 2005
Posts: 46
|
|
If you want the column names you can get them as follows:
|
 |
 |
|
|
subject: Select Particular Column values in sql without know the column name
|
|
|