Click here to Skip to main content
15,886,519 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to set radgrid header as a dynamic data from the database table how can i give it ?
Posted

1 solution

Suppose table1 is having colmn_name with value A B C.
Table 2 is having column A B C with some values.

First fire query on table1 to get columns in variabl.
Use comma separated login for that.

SQL
Declare @SelectColum  varchar(max)

SELECT @SelectColum = SUBSTRING(
(SELECT ',' + s.colmn_name
FROM table1 s
ORDER BY s.colmn_name
FOR XML PATH('')),2,200000) AS CSV

-- @SelectColum variable having your required column
Select @SelectColum from table2


You dont need to do any coding in C#. Just use above logic in sql to get data.
If still having doubt then explore your database design. (What is relation in table?
column name? What output you want?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900