Question
How to say 'all' in SQL
I have a form with 3 drop downs to pass values to a query
Select name, class, date
From table
where <cfif #name# is 0>
name in 'this is where I want to say all names'
<cfelse>
Select name, class, date
From table
where <cfif #name# is 0>
name in 'this is where I want to say all names'
<cfelse>