Another quick SQL query.
I am passing a variable named $industry, if $industry = "all" I want to search all the industries.
What would the SQL for this be?
"SELECT job, title, description FROM job WHERE industry = '*'";
The percent sign is the wildcard value in a query...
%
Ah yes, I knew that as well - bit of mental block going on there.