Reputation: 6110
I have a question about creating a list of column names from table. I have table with different activities like Football, Basketball, Volleyball,... I want to take all of these sports and put them in the list that way I can limit my query later based on the sport which user selected in drop down. Can anyone help mi with this problem?
Select *
From Activities
Where (sleceted sport) = 'Basketball';
Upvotes: 0
Views: 127