I have a checkbox parameter input which draws values from a table:
SELECT factor, description FROM db_wh_repo.wh_bs3_factors ORDER BY id;
Which returns results like:
'Avg_Post_Project_Rating','Average Post Project Rating (over all 8 criteria)'
'Pitches_Won','SP has been selected in the past'
...
And I would like to set some defaults to this so I created a default parameter query:
SELECT 'Avg_Post_Project_Rating';
But this does not seem to work, am I missing something here?
Thanks,
Martin