I am wondering if there is a way to select "like". For example i have columns h1, h2, h3 i want my select to pick which column to grab based on user input.
Select like "user var will be 1,2 or 3" from table
Can you have a varying select or will i have to do
Select * from table
and then filter my data table?
Another though I had was through having it add the h onto the users var in C#
Select 'h" + var + " ' from table