I am look for a method to create an SQL query string.
Example:
If the client clicks on the following form checkboxes:
[x] column1
[] column2
[x] column3
[x] column4
[] column5
Then I can produce an SQL statement like:
"SELECT column1, column3, column4 FROM table"
I would ask if this is possible BUT, it seems ANYTHING is possible with a creative mind.
Thanks everyone for help on this issue.